curry_is_easy
No user record in our sample, but curry_is_easy has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
No user record in our sample, but curry_is_easy has activity below (stories or comments). Likely we have partial data — the full bulk-load will fill profiles in.
Since you know JavaScript, this should help. Uncurried: ((x, y) => x * y)(3, 5) === 15 Curried: (x => y => x * y)(3)(5) === 15 If you don't understand that, your problem is that you don't understand anonymous functions…