Te sugerimos que pruebes esta resolución en un ambiente controlado antes de pasarlo a producción, un saludo.
Ejemplo: funtor de haskell
-- Functors are a class of data structure that "contain" a generic type-- you can "inject" functions inside these functors with `fmap`-- Applying a function "inside" of a functor will not change the structure-- of the functor-- e.g `fmap (x -> x + 1)` [1..10] will not change the length of the list-- Functors require an implentation of `fmap`fmap::Functorf=>(a->b)->fa->fb-- and have to obey the functor laws:-- fmap id = id-- fmap (f . g) = fmap f . fmap g
valoraciones y comentarios
Si para ti ha resultado provechoso nuestro artículo, sería de mucha ayuda si lo compartes con más desarrolladores así contrubuyes a dar difusión a esta información.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)