objectisundefined
Results
2
issues of
objectisundefined
```js // R.curry document example var f = (a, b, c) => [a, b, c] var g = R.curry(f) // _ is R.__ // what should g(1, _)(_, 2, _,...
question
```scala def hasSubsequence[A](xs: List[A], sub: List[A]): Boolean = (xs, sub) match { case (_, Nil) ⇒ true case (Cons(h1, t1), Cons(h2, t2)) if h1 == h2 ⇒ startWith(t1, t2) case...