split.split

Ditto

  1. void split(out Args args)
    template split(units...)
    @safe pure
    void
    split
    const nothrow @nogc
    (
    Args...
    )
    (
    out Args args
    )
    if (
    units.length != 0 &&
    args.length == units.length
    &&
    allAreMutableIntegralTypes!Args
    )
    if (
    allAreAcceptedUnits!("weeks", "days", "hours", "minutes", "seconds", "msecs", "usecs", "hnsecs", "nsecs")(units) &&
    unitsAreInDescendingOrder(units)
    )
  2. auto split()
Suggestion Box / Bug Report