vmessage

Same as message, but takes a va_list parameter.

  1. void vmessage(Loc loc, const(char)* format, va_list ap)
    nothrow extern (C++)
    static if(__VERSION__ < 2092)
    void
    vmessage
    (
    const ref Loc loc
    ,
    const(char)* format
    ,
    va_list ap
    )
  2. void vmessage(Loc loc, const(char)* format, va_list ap)

Parameters

loc Loc

location of message

format const(char)*

printf-style format specification

ap va_list

printf-style variadic arguments

Meta