@nfdi4plants/swate-components
Version:
Customizable React components for ontology annotation, based on Swate and the ARC.
23 lines • 1.58 kB
TypeScript
import { int32 } from '@fable-org/fable-library-js/Int32.js';
import { Option } from '@fable-org/fable-library-js/Option.js';
import { IMap } from '@fable-org/fable-library-js/Util.js';
import { FSharpList } from '@fable-org/fable-library-js/List.js';
/**
* If at least i values exist in seq a, builds a new array that contains the elements of the given seq, exluding the first i elements
*/
export declare function Seq_trySkip<$a>(i: int32, s: Iterable<$a>): Option<Iterable<$a>>;
export declare function Array_ofIndexedSeq(s: Iterable<[int32, string]>): string[];
/**
* If at least i values exist in array a, builds a new array that contains the elements of the given array, exluding the first i elements
*/
export declare function Array_trySkip<$a>(i: int32, a: $a[]): Option<$a[]>;
/**
* Returns Item of array at index i if existing, else returns default value
*/
export declare function Array_tryItemDefault<$a>(i: int32, d: $a, a: $a[]): $a;
export declare function Array_map4<A, B, C, D, T>(f: ((arg0: A, arg1: B, arg2: C, arg3: D) => T), aa: A[], ba: B[], ca: C[], da: D[]): T[];
export declare function List_tryPickDefault<T, U>(chooser: ((arg0: T) => Option<U>), d: U, list: FSharpList<T>): U;
export declare function List_unzip4<A, B, C, D>(l: FSharpList<[A, B, C, D]>): [FSharpList<A>, FSharpList<B>, FSharpList<C>, FSharpList<D>];
export declare function Dictionary_tryGetValue<K, V>(k: K, dict: IMap<K, V>): Option<V>;
export declare function Dictionary_tryGetString<K>(k: K, dict: IMap<K, string>): Option<string>;
//# sourceMappingURL=CollectionAux.fs.d.ts.map