Macro target_lexicon::triple
source · macro_rules! triple { ($str:tt) => { ... }; }
Expand description
A convenient syntax for triple literals.
This currently expands to code that just calls Triple::from_str
and does
an expect
, though in the future it would be cool to use procedural macros
or so to report errors at compile time instead.