Sha256: aafb5f33522178bdf4f777b6cb791ec437ff48093bd131dc10a80b774e8f3fea
Contents?: true
Size: 1.14 KB
Versions: 281
Compression:
Stored size: 1.14 KB
Contents
using System; using System.Collections; using System.Collections.Generic; using System.Linq; public class SimpleLinkedList<T> : IEnumerable<T> { public SimpleLinkedList(T value) { throw new NotImplementedException("You need to implement this function."); } public SimpleLinkedList(IEnumerable<T> values) { throw new NotImplementedException("You need to implement this function."); } public T Value { get { throw new NotImplementedException("You need to implement this function."); } } public SimpleLinkedList<T> Next { get { throw new NotImplementedException("You need to implement this function."); } } public SimpleLinkedList<T> Add(T value) { throw new NotImplementedException("You need to implement this function."); } public IEnumerator<T> GetEnumerator() { throw new NotImplementedException("You need to implement this function."); } IEnumerator IEnumerable.GetEnumerator() { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
281 entries across 281 versions & 1 rubygems