StaticArray.opApply - multiple declarations

Function StaticArray.opApply

Indexing operators yield or modify the value at a specified index.

int opApply (
  scope int delegate(ref T) dg
);

int opApply (
  scope int delegate(ptrdiff_t index, ref T) dg
);

Precondition

first <= index <= last

Complexity

1

Function StaticArray.opApply

Indexing operators yield or modify the value at a specified index.

int opApply (
  scope int delegate(ref T) dg
);

int opApply (
  scope int delegate(E index, ref T) dg
);

Precondition

first <= index <= last

Complexity

1