MCPcopy
hub / github.com/jabbany/CommentCoreLibrary / IBinArray

Interface IBinArray

src/core/Core.d.ts:11–26  ·  view source on GitHub ↗

* Definintions for binary array tools

Source from the content-addressed store, hash-verified

9 * Definintions for binary array tools
10 */
11interface IBinArray {
12 /**
13 * Binary insert into array
14 * @param arr - target array
15 * @param inserted - element to be inserted
16 * @param how - comparison function
17 */
18 binsert(arr:Array<any>, inserted:any, how:Function):number;
19 /**
20 * Binary loose search
21 * @param arr - array to look in
22 * @param what - object to try to find
23 * @param how - comparison function
24 */
25 bsearch(arr:Array<any>, what:any, how:Function):number;
26}
27declare var BinArray:IBinArray;
28
29interface IScriptingEngine {

Callers 4

CommentManager.jsFile · 0.80
addMethod · 0.80
Array.jsFile · 0.80
CommentManager.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected