Lines Matching +full:implicit +full:- +full:casts
2 / Copyright (c) 2008-2012 Eric Niebler
34 [note Why the void casts? It's to avoid argument-dependent lookup, which might find an overloaded c…
38 …ied, they would apply the specified domain's generator, resulting in a twice-wrapped expression. T…
69 [*New Feature: Sub-domains]
71 …-domains". This gives you a way to spcify that one domain is compatible with another such that exp…
82 // Define a domain B that is the sub-domain
88 …interfaces), but they can be combined into larger expressions. Without a sub-domain relationship, …
90 The complete description of sub-domains can be found in the reference
93 [*New Feature: Domain-specific as_expr() and as_child()]
95 …pressions post-hoc by specifying a Generator when defining their domain. But it has never allowed …
156 While this works in the majority of cases, it still doesn't suppress the implicit generation of the…
162 proto::literal<int> a(1), b(2); // two non-const proto literals
165 a = b; // No-op. Builds an expression tree and discards it.