basic static method

NDCheckRelative basic()

Implementation

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