Variable kPredicateCasesConst
kPredicateCases: {
every_even: {
cond: string;
filter: ((id, size) => boolean);
};
every_odd: {
cond: string;
filter: ((id, size) => boolean);
};
first_two: {
cond: string;
filter: ((id) => boolean);
};
lower_half: {
cond: string;
filter: ((id, size) => boolean);
};
upper_half: {
cond: string;
filter: ((id, size) => boolean);
};
} = ...
Type declaration
every_even: {
cond: string;
filter: ((id, size) => boolean);
}
cond: string
filter: ((id, size) => boolean)
- (id, size): boolean
Returns boolean
every_odd: {
cond: string;
filter: ((id, size) => boolean);
}
cond: string
filter: ((id, size) => boolean)
- (id, size): boolean
Returns boolean
first_two: {
cond: string;
filter: ((id) => boolean);
}
cond: string
filter: ((id) => boolean)
- (id): boolean
Returns boolean
lower_half: {
cond: string;
filter: ((id, size) => boolean);
}
cond: string
filter: ((id, size) => boolean)
- (id, size): boolean
Returns boolean
upper_half: {
cond: string;
filter: ((id, size) => boolean);
}
cond: string
filter: ((id, size) => boolean)
- (id, size): boolean
Returns boolean