nn_symbol

Symbols: Returns the symbol name (e.g. "NN_REQ") and value at a specified index. If the index is out-of-range, returns 0 and sets errno to EINVAL General usage is to start at i=0 and iterate until 0 is returned.

  1. char* nn_symbol(int i, int* value)
    extern (C) @nogc nothrow nothrow @nogc
    char*
    nn_symbol
    (
    int i
    ,
    int* value
    )
  2. const(char)* nn_symbol(int i, int* value)

Parameters

i int

index

Return Value

Type: char*

symbol name eg "NN_REQ" and value at a specified index