functions1 top-level property
Common mathematical functions (1 argument).
Implementation
final functions1 = {
'acos': acos,
'asin': asin,
'atan': atan,
'cos': cos,
'exp': exp,
'log': log,
'sin': sin,
'sqrt': sqrt,
'tan': tan,
'abs': (num x) => x.abs(),
'ceil': (num x) => x.ceil(),
'floor': (num x) => x.floor(),
'round': (num x) => x.round(),
'sign': (num x) => x.sign,
'truncate': (num x) => x.truncate(),
};