StringTable.apply

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

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

Parameters

fp
Type: int function
(
const(StringValue!T)*
)
nothrow

function to call. Returns !=0 to stop

Return Value

Type: int

last return value of fp call

Meta