# Functions
FoldLeft FoldLeft[B](l Stack[A], z: B)(op: (B, A) => B): B
* Applies a binary operator to all elements of this list and a start value, going left to right.
FoldRight FoldRight[B](l Stack[A], z: B)(op: (A, B) => B): B
Applies a binary operator to all elements of this list and a start value, going right to left.
Converts an array into a stack efficiently and preserves the order, first array element of source array is on top.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author