simple-squiggle/node_modules/mathjs/lib/esm/expression/embeddedDocs/function/utils/isPrime.js

8 lines
317 B
JavaScript

export var isPrimeDocs = {
name: 'isPrime',
category: 'Utils',
syntax: ['isPrime(x)'],
description: 'Test whether a value is prime: has no divisors other than itself and one.',
examples: ['isPrime(3)', 'isPrime(-2)', 'isPrime([2, 17, 100])'],
seealso: ['isInteger', 'isNumeric', 'isNegative', 'isZero']
};