isPair

True if T would be paired into multiple registers, otherwise, false.

  1. alias isPair(T) = Alias!false
    version(Windows)
    static
    alias isPair(T) = Alias!false
  2. alias isPair(T) = Alias!(!isFloat!T && is(T == struct) && T.sizeof > 8 && T.sizeof <= 32)

Meta