LinkedList.put

Inserts an element at the end of the list.

  1. alias put = insertAtEnd
  2. E put(E value)
    struct LinkedList(E, bool allowDuplicates = true, alias equal = "a == b")
    @safe pure nothrow
    static if(!(allowDuplicates))
    E
    put
    ()

Meta