Files
react-native/ReactCommon/fabric/core/layout/LayoutConstraints.h
T
Valentin Shergin 104ef96498 Fabric: LayoutConstraints::clamp()
Summary: `LayoutConstraints::clamp` clamps the provided `Size` between the `minimumSize` and `maximumSize` bounds of this `LayoutConstraints`.

Reviewed By: mdvacca

Differential Revision: D14205770

fbshipit-source-id: 4799608cead393451d334e47dd6906255699a1e8
2019-02-27 00:32:25 -08:00

57 lines
1.4 KiB
C++

/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#pragma once
#include <folly/Hash.h>
#include <react/core/LayoutPrimitives.h>
#include <react/graphics/Geometry.h>
namespace facebook {
namespace react {
/*
* Unified layout constraints for measuring.
*/
struct LayoutConstraints {
Size minimumSize{0, 0};
Size maximumSize{kFloatUndefined, kFloatUndefined};
LayoutDirection layoutDirection{LayoutDirection::Undefined};
/*
* Clamps the provided `Size` between the `minimumSize` and `maximumSize`
* bounds of this `LayoutConstraints`.
*/
Size clamp(const Size &size) const;
};
inline bool operator==(
const LayoutConstraints &lhs,
const LayoutConstraints &rhs) {
return std::tie(lhs.minimumSize, lhs.maximumSize, lhs.layoutDirection) ==
std::tie(rhs.minimumSize, rhs.maximumSize, rhs.layoutDirection);
}
} // namespace react
} // namespace facebook
namespace std {
template <>
struct hash<facebook::react::LayoutConstraints> {
size_t operator()(
const facebook::react::LayoutConstraints &constraints) const {
auto seed = size_t{0};
folly::hash::hash_combine(
seed,
constraints.minimumSize,
constraints.maximumSize,
constraints.layoutDirection);
return seed;
}
};
} // namespace std