- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
让一些类型实例化到许多类。有选择地替换某些实例的行为的正确方法是什么?
表达它的一种方法可以是构造 by
运算符然后
data Person ...
sort personList -- default Ord instance
(sort `by` age) personList -- `age` modify `Ord` instance
sort
可以是具有任何元数(例如
minimum
)的任何函数(例如
insert
)。
reportPersons :: [Person] -> Report
Ord
(对列表进行排序),
Show
(格式化记录),...或其他特定实例;使用
funcBy
我们必须写的模式
reportPersonsBy :: (Person -> Person -> Ordering) -> (Person -> String) -> ... -> [Person] -> Report
by
用原始
reportPersons
包装每个行为
没有重构reportPersonsBy
(解释的例子,最后没有解决相关问题)。
class Wrappable m where
wrap :: forall a . a -> m a
unwrap :: forall a . m a -> a
by
包装函数的函数
-- wrap functions: f a -> g a
by :: (Functor f, Functor g, Wrappable m) => (f (m a) -> g (m a)) -> m a -> f a -> g a
by f _ = fmap unwrap . f . fmap wrap
-- wrap functions: a -> f a -> g a
by_ f m a = f (wrap a) `by` m
-- f a -> f a
mapM_ print $ sort personList
mapM_ print $ (sort `by` age) personList
-- f a -> g a
print $ minimum personList
print $ (minimum `by` age) personList
-- a -> f a -> f a
print $ insert jane personList
print $ (insert `by_` age) jane personList
by
,
by_
, ... 有效,但是
是什么?正确方法 ?如何写完整的多态
by
?
class Wrappable m => By m x f i o where
by :: f m x -> m x -> i m x -> o m x
instance (Wrappable m, Functor f, Functor g) => By m a (f (m a) -> g (m a)) (f a) (g a) where
by :: (f (m a) -> g (m a)) -> m a -> f a -> g a
by f _ = fmap unwrap . f . fmap wrap
reportPersons :: (Wrappable m, Show (m Person), Ord (m Person)) => [m Person] -> Maybe String
reportPersons = Just . unlines . map show . sort
Ord
和
Show
)。
by
:()
by' :: (Functor f, Functor g, Wrappable m) => (f (m a) -> g b) -> m a -> f a -> g b
by' f _ = f . fmap wrap
Wrappable
Person
的实例秒
newtype Format1 a = Format1 a deriving (Eq, Ord)
instance Show (Format1 Person) where show (Format1 (Person n a)) = "Name := " ++ n ++ " (" ++ show a ++ " years old)"
format1 :: Format1 Person; format1 = undefined
instance Wrappable Format1 where wrap = Format1
unwrap (Format1 p) = p
putStrLn $ fromJust $ (reportPersons `by'` age) personList
putStrLn $ fromJust $ (reportPersons `by'` format1) personList
ByAge (Person {personName = "John", personAge = 16})
ByAge (Person {personName = "Anne", personAge = 24})
ByAge (Person {personName = "Zorn", personAge = 37})
ByAge (Person {personName = "Peter", personAge = 42})
Name := Anne (24 years old)
Name := John (16 years old)
Name := Peter (42 years old)
Name := Zorn (37 years old)
TypeFamilies
或其他功能,我们可以链接
Wrappables
,等等...(这是一个玩具!!!我不知道怎么做的好)
{-# LANGUAGE RankNTypes, FlexibleInstances #-}
import Data.Maybe
import Prelude hiding (minimum)
import Data.List hiding (minimum)
import System.Random
{- safe minimum -}
minimum [] = Nothing; minimum xs = listToMaybe $ sort xs
data Person = Person { personName :: String, personAge :: Int } deriving (Eq, Show, Ord)
personList = [Person "Anne" 24, Person "John" 16, Person "Peter" 42, Person "Zorn" 37]
jane = Person "Jane" 26
class Wrappable m where
wrap :: forall a . a -> m a
unwrap :: forall a . m a -> a
-- wrap functions: f a -> g a
by :: (Functor f, Functor g, Wrappable m) => (f (m a) -> g (m a)) -> m a -> f a -> g a
by f _ = fmap unwrap . f . fmap wrap
-- wrap functions: a -> f a -> g a
by_ f m a = f (wrap a) `by` m
newtype ByAge a = ByAge a deriving (Eq, Show)
instance Ord (ByAge Person) where (ByAge (Person _ a)) `compare` (ByAge (Person _ b)) = a `compare` b
age :: ByAge Person; age = undefined
instance Wrappable ByAge where wrap = ByAge
unwrap (ByAge p) = p
main = do
-- f a -> f a
mapM_ print $ sort personList
mapM_ print $ (sort `by` age) personList
-- f a -> g a
print $ minimum personList
print $ (minimum `by` age) personList
-- a -> f a -> f a
print $ insert jane personList
print $ (insert `by_` age) jane personList
最佳答案
Let some type instanced to many classes. What is the proper way to replace, selectively, certain instances's behaviors?
sortBy
,
maximumBy
,
groupBy
等等。
关于haskell - 有选择地包装类实例的正确方法(或 "lift"函数,如 `sortBy` 、 `minimumBy` ……自动),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27564159/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!