The OpenD Programming Language

isSummary

Tests whether a struct/class has the necessary information for calculating a T-test. It must have a property .mean (mean), .stdev (stdandard deviation), .var (variance), and .N (sample size).

template isSummary (
T
) {
enum bool isSummary;
}

Meta