ModelState.info

Writes info to the info sink.

  1. void info(nstring msg, const(char)* file, uint line)
    struct ModelState
    @nogc pragma(inline, true)
    void
    info
    (
    nstring msg
    ,
    const(char)* file = __MODULE__.ptr
    ,
    uint line = __LINE__
    )
  2. void info(const(char)* msg, const(char)* file, uint line)

Parameters

msg nstring

The message.

file const(char)*

The file the message was emitted from.

line uint

The line the message was emitted from.

Meta