nimble.matchΒΆ

Collection of functions determining if a data value or entire data object satisfy a given condition.

allBoolean(data)

Determine if all values in the data are a boolean type.

allFalse(data)

Determine if all values in the data are a boolean False.

allFloating(data)

Determine if all values in the data are a float type.

allInfinity(data)

Determine if all values in the data are infinity.

allInteger(data)

Determine if all values in the data are an integer type.

allMissing(data)

Determine if all values in the data are missing.

allNegative(data)

Determine if all values in the data are less than zero.

allNonMissing(data)

Determine if all values in the data are missing.

allNonNumeric(data)

Determine if all values in the data are non-numeric.

allNonZero(data)

Determine if all values in the data are non-zero.

allNumeric(data)

Determine if all values in the data are numeric.

allPositive(data)

Determine if all values in the data are greater than zero.

allTrue(data)

Determine if all values in the data are a boolean True.

allValues(match)

Factory for functions which will determine if all values match.

allZero(data)

Determine if all values in the data are zero.

anyBoolean(data)

Determine if any values in the data are a boolean type.

anyFalse(data)

Determine if any values in the data are a boolean False.

anyFloating(data)

Determine if any values in the data are a float type.

anyInfinity(data)

Determine if any values in the data are infinity.

anyInteger(data)

Determine if any values in the data are an integer type.

anyMissing(data)

Determine if any values in the data are missing.

anyNegative(data)

Determine if any values in the data are less than zero.

anyNonMissing(data)

Determine if any values in the data are not missing.

anyNonNumeric(data)

Determine if any values in the data are non-numeric.

anyNonZero(data)

Determine if any values in the data are non-zero.

anyNumeric(data)

Determine if any values in the data are numeric.

anyPositive(data)

Determine if any values in the data are greater than zero.

anyTrue(data)

Determine if any values in the data are a boolean True.

anyValues(match)

Factory for functions which will determine if any values match.

anyZero(data)

Determine if any values in the data are zero.

boolean(value)

Determine if a value is a boolean value.

false(value)

Determine if a value is a boolean False value.

floating(value)

Determine if a value is a float type.

infinity(value)

Determine if a value is a float infinity.

integer(value)

Determine if a value is an integer type.

missing(value)

Determine if a value is missing.

negative(value)

Determine if a value is less than zero.

nonMissing(value)

Determine if a value is not a missing value.

nonNumeric(value)

Determine if a value is non-numeric.

nonZero(value)

Determine if a value is not equal to zero.

numeric(value)

Determine if a value is numeric.

positive(value)

Determine if a value is greater than zero.

true(value)

Determine if a value is a boolean True value.

zero(value)

Determine if a value is equal to zero.

QueryString

A callable object for filtering in Nimble data objects.