MostCommon

Undocumented in source.

Members

Aliases

MostCommon
alias MostCommon = Nullable!(Types[0])
Undocumented in source.

Structs

MostCommon
struct MostCommon
Undocumented in source.

Examples

struct A {
	uint c;
	uint x;
	string y;
}
struct B {
	string c;
	uint x;
	uint z;
}
MostCommon!(A, B) test;
test.a = A(0, 1, "b");
assert(test.x == 1);
assert(test.z.isNull);

Meta