basic static method
Implementation
static NDCheckRelative basic() {
return (NDKey lKey, NDKey rKey) {
return (lKey.length <= rKey.length)
? rKey.startsWith(lKey)
: lKey.startsWith(rKey);
};
}
static NDCheckRelative basic() {
return (NDKey lKey, NDKey rKey) {
return (lKey.length <= rKey.length)
? rKey.startsWith(lKey)
: lKey.startsWith(rKey);
};
}