Mirror: 馃帺 A tiny but capable push & pull stream library for TypeScript and Flow
at v3.1.0 408 B view raw
1type t('a) = Belt.MutableStack.t('a); 2 3let make = Belt.MutableStack.make; 4let clear = Belt.MutableStack.clear; 5let push = Belt.MutableStack.push; 6let pop = Belt.MutableStack.pop; 7let copy = Belt.MutableStack.copy; 8let size = Belt.MutableStack.size; 9let forEachU = Belt.MutableStack.forEachU; 10let forEach = Belt.MutableStack.forEach; 11 12let isEmpty = Belt.MutableStack.isEmpty; 13let top = Belt.MutableStack.top;