LinkedHashMap.this

Constructs an empty <tt>LinkedHashMap</tt> instance with the specified initial capacity, load factor and ordering mode.

@param initialCapacity the initial capacity @param loadFactor the load factor @param accessOrder the ordering mode - <tt>true</tt> for access-order, <tt>false</tt> for insertion-order @throws IllegalArgumentException if the initial capacity is negative or the load factor is nonpositive

  1. this(int initialCapacity, float loadFactor)
  2. this(int initialCapacity)
  3. this()
  4. this(Map!(K, V) m)
  5. this(int initialCapacity, float loadFactor, bool accessOrder)
    class LinkedHashMap(K, V)

Meta