Lines Matching refs:Read

7 To accelerate data access, linear containers support Create, Read, Update, and Delete (CRUD) throug…
33 | Read| arr\[index: number] | Obtains the value corresponding to a specified index. The value is ob…
34 | Read| forEach(callbackFn: (value: T, index?: number, arrlist?: ArrayList<T>) => void, th…
35 | Read| \[Symbol.iterator]():IterableIterator<T> | Creates an iterator for data access.|
54 | Read| get(index: number) | Obtains the element corresponding to the specified index.|
55 | Read| list\[index: number] | Obtains the element corresponding to the specified index position. H…
56 | Read| getFirst() | Obtains the first element.|
57 | Read| getLast() | Obtaining the last element|
58 | Read| getIndexOf(element: T) | Obtains the position of the first element that matches the specifi…
59 | Read| getLastIndexOf(element: T) | Obtains the position of the last element that matches the spec…
60 | Read| forEach(callbackfn: (value:T, index?: number, list?: List<T>)=> void,thisArg?: Obj…
61 | Read| \[Symbol.iterator]():IterableIterator<T> | Creates an iterator for data access.|
84 | Read| get(index: number) | Obtains the element corresponding to the specified index.|
85 | Read| list\[index: number] | Obtains the element corresponding to the specified index position. H…
86 | Read| getFirst() | Obtains the first element.|
87 | Read| getLast() | Obtaining the last element|
88 | Read| getIndexOf(element: T) | Obtains the position of the first element that matches the specifi…
89 | Read| getLastIndexOf(element: T) | Obtains the position of the last element that matches the spec…
90 | Read| forEach(callbackFn: (value: T, index?: number, list?: LinkedList<T>) => void, this…
91 | Read| \[Symbol.iterator]():IterableIterator<T> | Creates an iterator for data access.|
115 | Read| getFirst() | Obtains the first element and does not dequeue the element.|
116 | Read| getLast() | Obtains the last element and does not dequeue the element.|
117 | Read| popFirst() | Obtains the first element and dequeues it.|
118 | Read| popLast() | Obtains the last element and dequeues it.|
119 | Read| forEach(callbackFn:(value: T, index?: number, deque?: Deque<T>) => void, thisArg?:…
120 | Read| \[Symbol.iterator]():IterableIterator<T> | Creates an iterator for data access.|
142 | Read| getFirst() | Obtains the head element of a queue and does not dequeue the element.|
143 | Read| pop() | Obtains the head element and dequeues it.|
144 | Read| forEach(callbackFn: (value: T, index?: number, queue?: Queue<T>) => void,thisArg?:…
145 | Read| \[Symbol.iterator]():IterableIterator<T> | Creates an iterator for data access.|
164 | Read| peek() | Obtains the top element of the stack and does not dequeue the element.|
165 | Read| pop() | Obtains the top element of the stack and dequeues it.|
166 | Read| locate(element: T) | Obtains the position of an element.|
167 | Read| forEach(callbackFn: (value: T, index?: number, stack?: Stack<T>) => void, thisArg?…
168 | Read| \[Symbol.iterator]():IterableIterator<T> | Creates an iterator for data access.|
188 | Read| get(index: number) | Obtains the element corresponding to the specified index.|
189 | Read| vec\[index: number] | Obtains the element corresponding to the specified index position. Th…
190 | Read| getFirst() | Obtains the first element.|
191 | Read| getLastElement() | Obtaining the last element|
192 | Read| getIndexOf(element: T) | Obtains the position of the first element that matches the specifi…
193 | Read| getLastIndexOf(element: T) | Obtains the position of the last element that matches the spec…
194 | Read| forEach(callbackFn: (value: T, index?: number, Vector?: Vector<T>) => void, thisAr…
195 | Read| \[Symbol.iterator]():IterableIterator<T> | Creates an iterator for data access.|