StringTable.opApply

Walk the contents of the string table, calling fp for each entry.

  1. int apply(int function(const(StringValue!T)*) nothrow fp)
  2. int opApply(scope int delegate(const(StringValue!T)*) nothrow dg)
    struct StringTable(T)
    extern (D) nothrow
    int
    opApply
    (
    scope int delegate
    (
    const(StringValue!T)*
    )
    nothrow
    dg
    )

Return Value

Type: int

last return value of fp call

Meta