IsInteger
IsInteger( value )
Description
The IsInteger
function returns true
only if value
is an
Integer number, otherwise it returns false
.
Examples
The following query uses Map
to iterate over an array of all of
the types of values that can be tested by a type-check function, passing
each item into a Lambda
function that returns an object, which
contains the value and the result of calling IsInteger
with that
value:
[
{ value: [ 'array' ], IsInteger: false },
{ value: true, IsInteger: false },
{ value: false, IsInteger: false },
{ value: { '0': 1, '1': 2, '2': 3, '3': 4 }, IsInteger: false },
{ value: [ 1, 2, 3, 4 ], IsInteger: false },
{ value: Collection("Letters"), IsInteger: false },
{ value: Ref(Credentials(), "302043979982045696"), IsInteger: false },
{ value: Database("child_db"), IsInteger: false },
{ value: Date("2019-11-12"), IsInteger: false },
{ value: Ref(Collection("Letters"), "123"), IsInteger: false },
{ value: 10.1, IsInteger: false },
{ value: Function("double"), IsInteger: false },
{ value: Index("letters"), IsInteger: false },
{ value: 10, IsInteger: true },
{ value: Ref(Keys(), "1"), IsInteger: false },
{ value: Query(Lambda("x", Var("x"))), IsInteger: false },
{ value: null, IsInteger: false },
{ value: { x: 10 }, IsInteger: false },
{ value: Role("employees"), IsInteger: false },
{ value: Match(Index("letters")), IsInteger: false },
{ value: 'ten', IsInteger: false },
{ value: '10', IsInteger: false },
{ value: Time("2020-07-06T12:34:56.789Z"), IsInteger: false },
{ value: Ref(Tokens(), "1"), IsInteger: false }
]
This query operates on a pre-existing schema, which is not provided here. Also, the query is executed via a client connection, that uses a secret
acquired by calling the |
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!