问题
I am trying move more towards functional programming in my javascript applications. I currently use the library ramda as a base lib for this.
My desire:
- Create a function
findWithId(id, list)
which returns the item in the list with the property_id
matching the input id. - Make the implementation of it as short as possible, relying on existing code as much as possible.
Acheived so far:
My base is R.find
which has this defenition
find :: (a -> Boolean) -> [a] -> a | undefined
I tried some different solutions shown below:
//Using ramdajs (ramdajs.com)
var hasId = R.curry(function(id, item) {
return item._id === id
});
//This doesn't work
var findWithId_v1 = R.find(hasId);
//This works but can I make it as short as v1?
var findWithId_v2 = function(id, list) {
return R.find(hasId(id), list);
}
Question
Can I make findWithId_v2
as short as findWithId_v1
by using standard functional programming tools like compose, curry etc?
Plunker demo
http://plnkr.co/edit/xAYx15yk6lBzutdAL9HC?p=preview
回答1:
Ramda does have a function that will help with this, one called useWith
. If you can think of a better name, I'd love it. I've asked that before.
You can use is like this:
var findById = R.useWith(R.find, hasId, R.identity);
var find5 = findById(5);
find5([{id:3}, {id:5}]); //=> {id:5}
findById(5, [{id:3}, {id:5}]); //=> {id:5}
You don't have to supply R.identity
above. This would also work, although I prefer to be explicit:
var findById = R.useWith(R.find, hasId);
useWith "accepts a function fn
and any number of transformer functions and returns a new function. When the new function is invoked, it calls the function fn
with parameters consisting of the result of calling each supplied handler on successive arguments to the new function"
回答2:
You're looking for the compose function:
compose :: (a -> b) -> (b -> c) -> (a -> c)
hasId :: p -> (i -> Boolean)
find :: (i -> Boolean) -> ([i] -> i | undefined)
compose :: (p -> (i -> Boolean))
-> ((i -> Boolean) -> ([i] -> i | undefined))
-> (p -> ([i] -> i | undefined))
compose find hasId :: p -> ([i] -> i | undefined)
So you'd do
var findWithId = R.compose(R.find, hasId)
Oh, and notice that you don't need a function expression for hasId
either:
var hasId = R.propEq('_id');
来源:https://stackoverflow.com/questions/26178152/can-i-make-this-function-defenition-even-shorter