every()
Last updated
Was this helpful?
Last updated
Was this helpful?
areDeterminer().every()
Checks whether every of the provided pass the test implemented by the given function.
Payload
extends
CommonPayload
The Payload
generic type variable constrained by the generic type variable indicates the type of optional parameter of the supplied function and optional parameter of the method from which it captures its value.
callback: ResultCallback<any, Payload>
payload?: Payload
A callback function
of type with parameters, the value
that has been checked, the result
of this check, and payload
of generic type variable Payload
with optional properties from the provided payload
, to handle them before the result
return. By default, it uses resultCallback()
function.
An optional of the generic type variable is assigned to the of the given function.
The return value is a indicating whether the provided passed the test implemented by the given function.