@@ -143,10 +143,10 @@ module Deque =
143143 /// O ( n ) . Views the given deque as a sequence.
144144 val inline toSeq : Deque < 'T > -> seq < 'T >
145145
146- /// O ( n ) . Returns a list of the deque elements in FIFO order.
146+ /// O ( n ) . Returns a list of the deque elements in front - to - back ( head - to - last ) order.
147147 val toList : Deque < 'T > -> 'T list
148148
149- /// O ( n ) . Returns an array of the deque elements in FIFO order.
149+ /// O ( n ) . Returns an array of the deque elements in front - to - back ( head - to - last ) order.
150150 val toArray : Deque < 'T > -> 'T []
151151
152152 /// O ( n ) . Returns a new deque whose elements are the results of applying the given function to each element.
@@ -159,11 +159,11 @@ module Deque =
159159 val iter : ( 'T -> unit ) -> Deque < 'T > -> unit
160160
161161 /// O ( n ) . Returns true if any element of the deque satisfies the given predicate.
162- /// Note : elements are not necessarily checked in FIFO order ; the internal rear list is checked in reverse ( LIFO ) order.
162+ /// Note : elements are not necessarily checked in front - to - back ( enumeration ) order; the internal rear list is checked in reverse order.
163163 val exists : ( 'T -> bool ) -> Deque < 'T > -> bool
164164
165165 /// O ( n ) . Returns true if all elements of the deque satisfy the given predicate.
166- /// Note : elements are not necessarily checked in FIFO order ; the internal rear list is checked in reverse ( LIFO ) order.
166+ /// Note : elements are not necessarily checked in front - to - back ( enumeration ) order; the internal rear list is checked in reverse order.
167167 val forall : ( 'T -> bool ) -> Deque < 'T > -> bool
168168
169169 /// O ( 1 ) amortized , O ( n ), worst case. Returns option first element and tail.
0 commit comments