Members
- 
			length :number
- 
	DescriptionGet the size of the collection Details
Methods
- 
			every( qu ) → {boolean}
- 
	DescriptionReturns true if all items match the query. Aliases as allParametersName Type Description quobject The query to execute ReturnsDetails
- 
			some( qu ) → {boolean}
- 
	DescriptionReturns true if any of the items match the query. Aliases as anyParametersName Type Description quobject The query to execute ReturnsDetails
- 
			unique( qu ) → {array}
- 
	DescriptionReturns the set of unique records that match a query ParametersName Type Description quobject The query to execute. ReturnsDetails
- 
			all( qu ) → {boolean}
- 
	DescriptionReturns true if all items match the query. Aliases as everyParametersName Type Description quobject The query to execute ReturnsDetails
- 
			any( qu ) → {boolean}
- 
	DescriptionReturns true if any of the items match the query. Aliases as allParametersName Type Description quobject The query to execute ReturnsDetails
- 
			remove( qu ) → {object|array}
- 
	DescriptionRemove all items in the object/array that match the query ParametersName Type Description quobject The query to execute. See module:ink/probe.queryOperators for the operators you can use. ReturnsDetails
- 
			findOneKey( qu ) → {object}
- 
	DescriptionReturns the first record that matches the query and returns its key or index depending on whether objis an object or array respectively.
 Aliased asseekKey.ParametersName Type Description quobject The query to execute. ReturnsDetails
- 
			findOne( qu ) → {object}
- 
	DescriptionReturns the first record that matches the query. Aliased as seek.ParametersName Type Description quobject The query to execute. ReturnsDetails
- 
			findKeys( qu ) → {array}
- 
	DescriptionFind all records that match a query and returns the keys for those items. This is similar to module:ink/probe.find but instead of returning 
 records, returns the keys. Ifobjis an object it will return the hash key. If 'obj' is an array, it will return the indexParametersName Type Description quobject The query to execute. ReturnsDetails
- 
			find( qu ) → {array}
- 
	DescriptionFind all records that match a query ParametersName Type Description quobject The query to execute. ReturnsDetails
- 
			update( qu, setDocument )
- 
	DescriptionUpdates all records in obj that match the query. See module:ink/probe.updateOperators for the operators that are supported. ParametersName Type Description quobject The query which will be used to identify the records to updated setDocumentobject The update operator. See module:ink/probe.updateOperators Details