mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
19 lines
306 B
JavaScript
19 lines
306 B
JavaScript
module.exports = {
|
|
'name': 'not',
|
|
'category': 'Logical',
|
|
'syntax': [
|
|
'not x',
|
|
'not(x)'
|
|
],
|
|
'description': 'Logical not. Flips the boolean value of given argument.',
|
|
'examples': [
|
|
'not true',
|
|
'not false',
|
|
'not 2',
|
|
'not 0'
|
|
],
|
|
'seealso': [
|
|
'and', 'or', 'xor'
|
|
]
|
|
};
|