menu
scidart package
documentation
numdart.dart
boolToInt function
boolToInt function
dark_mode
light_mode
boolToInt
function
int
boolToInt
(
bool
a
)
Convert a bool to int, if true return 1, else 0
Implementation
int boolToInt(bool a) => a ? 1 : 0;
scidart package
documentation
numdart
boolToInt function
numdart library