UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

14 lines (13 loc) 452 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.xorDocs = void 0; const xorDocs = exports.xorDocs = { name: 'xor', category: 'Logical', syntax: ['x xor y', 'xor(x, y)'], description: 'Logical exclusive or, xor. Test whether one and only one value is defined with a nonzero/nonempty value.', examples: ['true xor false', 'false xor false', 'true xor true', '0 xor 4'], seealso: ['not', 'and', 'or'] };