orange ~master (2020-03-21T19:05:30Z)
Home
Dub
Repo
format
orange
util
CTFE
Compile time string converter. Converts the given arguments to a string.
template
format (
ARGS
...
) {
static if
(
ARGS.length == 0
)
enum
format
;
static if
(!(
ARGS.length == 0
))
static if
(
is(typeof(ARGS[0]) : string)
)
enum
format
;
static if
(!(
ARGS.length == 0
))
static if
(!(
is(typeof(ARGS[0]) : string)
))
enum
format
;
}
Members
Manifest constants
format
enum
format
;
Undocumented in source.
format
enum
format
;
Undocumented in source.
format
enum
format
;
Undocumented in source.
Meta
Source
See Implementation
orange
util
CTFE
functions
contains
indexOf
templates
format
Compile time string converter. Converts the given arguments to a string.