Sha256: bd2498a02d96b6b97a07bcdc0a56560e83bf2cdc216370366638fd7797be045e
Contents?: true
Size: 478 Bytes
Versions: 107
Compression:
Stored size: 478 Bytes
Contents
class DoubleLinkedList<T> { void push(T value) { throw new UnsupportedOperationException('Method implementation is missing') } T pop() { throw new UnsupportedOperationException('Method implementation is missing') } T shift() { throw new UnsupportedOperationException('Method implementation is missing') } void unshift(T value) { throw new UnsupportedOperationException('Method implementation is missing') } }
Version data entries
107 entries across 107 versions & 1 rubygems