Sign in
fuchsia
/
third_party
/
dart-pkg
/
f9ecf2ab25e14079808f2a73a55ca6b2feb8a3a0
/
.
/
image
/
lib
/
src
/
internal
/
clamp.dart
blob: 9fd6057a20db0ada4ef4e558e38725591e2f36f9 [
file
] [
log
] [
blame
]
/// Clamp [x] to [a] [b]
int
clamp
(
int
x
,
int
a
,
int
b
)
=>
x
.
clamp
(
a
,
b
).
toInt
();
/// Clamp [x] to [0, 255]
int
clamp255
(
int
x
)
=>
x
.
clamp
(
0
,
255
).
toInt
();