1.0.11 • Published 5 years ago

@kingjs/linq.any v1.0.11

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

@kingjs/linq.any

Returns true if any element of a sequence satisfies a condition.

Usage

require('kingjs');
var assert = require('assert');
var Any = require('@kingjs/linq.any');

var sequence = [0, 1, 2];

assert(sequence[Any]());
assert(sequence[Any](function(o) { return o == 1; }));
assert(!sequence[Any](function(o) { return o == 3; }));

API

any(this[, predicate])

Parameters

  • this: An IEnumerable that contains the elements to which the predicate will be applied.
  • predicate: A function to test each element for a condition.

Returns

true if any elements in the source sequence pass the test in the specified predicate; otherwise, false.

Install

With npm installed, run

$ npm install @kingjs/linq.any

Dependencies

PackageVersion
@kingjs/i-enumerable^1.0.6
@kingjs/i-enumerator^1.0.7
@kingjs/reflect.export-extension^1.0.1

Source

https://repository.kingjs.net/linq/any

License

MIT

Analytics

1.0.11

5 years ago

1.0.10

5 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago