SharedFreeList.setBounds

Properties for getting (and possibly setting) the bounds. Setting bounds is allowed only once , and before any allocation takes place. Otherwise, the primitives have the same semantics as those of FreeList.

  1. void setBounds(size_t low, size_t high)
  2. void setBounds(size_t newMin, size_t newMax)
    struct SharedFreeList(ParentAllocator, size_t minSize, size_t maxSize = minSize, size_t approxMaxNodes = unbounded)
    version(StdDdoc)
    void
    setBounds
    (
    size_t newMin
    ,
    size_t newMax
    )
  3. size_t min [@property getter]
  4. size_t min [@property setter]
  5. size_t max [@property getter]
  6. size_t max [@property setter]

Meta