I don't understand what "lifting" is. Should I first understand Monads before understanding what a "lift" is (I'm completely ignorant about Monads too yet:) ? Or can someone explain it to me with simple words ?
|
|
Lifting is more of a design pattern than a mathematical concept (although I expect someone around here will now refute me by showing how lifts are a category or something). Typically you have some data type with a parameter. Something like
Suppose you find that a lot of uses of Foo take numeric types (Int, Double etc) and you keep having to write code that unwraps these numbers, adds or multiplies them, and then wraps them back up. You can short-circuit this by writing the unwrap-and-wrap code once. This function is traditionally called a "lift" because it looks like this:
In other words you have a function which takes a two-argument function (such as the (+) operator) and turns it into the equivalent function for Foos. So now you can write
|
|||||
|
|
Paul's and yairchu's are both good explanations. I'd like to add that the function being lifted can have an arbitrary number of arguments and that they don't have to be of the same type. For example, you could also define a liftFoo1:
In general, the lifting of functions that take 1 argument is captured in the type class
Note the similarity with
Furthermore, the generalization of lifting to an arbitrary number of arguments is called applicative style. Don't bother diving into this until you grasp the lifting of functions with a fixed number of arguments. But when you do, Learn you a Haskell has a good chapter on this. The Typeclassopedia is another good document that describes Functor and Applicative (as well as other type classes; scroll down to the right chapter in that document). Hope this helps! |
|||||
|
|
Lifting is a concept which allows you to transform a function into a corresponding function within another (usually more general) setting take a look at http://haskell.org/haskellwiki/Lifting |
|||||||||||||
|
|
Let's start with an example:
Another common lift is In general, lifts "lift" a function/action into a "wrapped" type. The best way to understand this, and monads etc and to understand why they are useful, is probably to code and use it. If there's anything you coded previously that you suspect can benefit from this (ie this will make that code shorter etc), just try it out and you'll easily grasp the concept. |
|||
|
|
|
According to this shiny tutorial, a functor is some container (like |
||||
|
|