dpq2 v1.0.16 (2020-09-25T11:39:12Z)
Home
Dub
Repo
isValidBoxType
dpq2
conv
geometric
Checks that type have "min" and "max" members of suitable returning type of point
@
safe
template
isValidBoxType (
T
) {
@
safe
static if
(
is(T == Nullable!R, R)
)
enum
isValidBoxType
;
@
safe
static if
(!(
is(T == Nullable!R, R)
))
static if
(
__traits(compiles, typeof(T.min)) && __traits(compiles, typeof(T.max))
)
enum
isValidBoxType
;
@
safe
static if
(!(
is(T == Nullable!R, R)
))
static if
(!(
__traits(compiles, typeof(T.min)) && __traits(compiles, typeof(T.max))
))
enum
isValidBoxType
;
}
Members
Manifest constants
isValidBoxType
enum
isValidBoxType
;
Undocumented in source.
isValidBoxType
enum
isValidBoxType
;
Undocumented in source.
isValidBoxType
enum
isValidBoxType
;
Undocumented in source.
Meta
Source
See Implementation
dpq2
conv
geometric
functions
binaryValueAs
toValue
mixin templates
GeometricInstancesForIntegrationTest
structs
Circle
Line
Path
templates
isGeometricType
isValidBoxType
isValidCircleType
isValidLineSegmentType
isValidLineType
isValidPathType
isValidPointType
isValidPolygon
Checks that type have "min" and "max" members of suitable returning type of point