- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我定义了不同的类型:
type TypeNull() = class end
type MyType1 = {
a:int;
b:int
}
type MyType2 = {
a:string;
b:int
}
type MyType3 = {
a:string;
b:DateTime
}
type myDU =
| A of int
| B of string
| C of string
type myDU2 =
| D of MyType1
| E of MyType2
| F of TypeNull
let applyArray = function
| A x -> [E({a="1"; b=2})]
| B x -> [D({a=1; b=2});E({a="1"; b=2});E({a="5"; b=24})]
| C x -> [D({a=1; b=2});E({a="1"; b=2});F(TypeNull())]
let arrayValueEquals =
let expected = [D({a=1; b=2});E({a="1"; b=2});E({a="5"; b=24})]
let actual = applyArray <| B("xxx")
actual = expected
let arrayValueNullEquals =
let expected = [D({a=1; b=2});E({a="1"; b=2});F(TypeNull())]
let actual = applyArray <| C("xxx")
actual = expected
val applyArray : _arg1:myDU -> myDU2 list
val arrayValueEquals : bool = true
val arrayValueNullEquals : bool = false
// Learn more about F# at http://fsharp.net. See the 'F# Tutorial' project
// for more guidance on F# programming.
#load "Library1.fs"
open test2
open System
type TypeNull() = class end
type MyType1 = {
a:int;
b:int
}
type MyType2 = {
a:string;
b:int
}
type MyType3 = {
a:string;
b:DateTime
}
type myDU =
| A of int
| B of string
| C of string
type myDU2 =
| D of MyType1
| E of MyType2
| F of TypeNull
let applyArray = function
| A x -> [E({a="1"; b=2})]
| B x -> [D({a=1; b=2});E({a="1"; b=2});E({a="5"; b=24})]
| C x -> [D({a=1; b=2});E({a="1"; b=2});F(TypeNull())]
let arrayValueEquals =
let expected = [D({a=1; b=2});E({a="1"; b=2});E({a="5"; b=24})]
let actual = applyArray <| B("xxx")
actual = expected
let arrayValueNullEquals =
let expected = [D({a=1; b=2});E({a="1"; b=2});F(TypeNull())]
let actual = applyArray <| C("xxx")
actual = expected
最佳答案
在 F# 中有一个叫做 Structural Equality 的东西.
简而言之:如果列表、数组和可区分联合的元素支持相等,则它们支持相等。对于列表,它将是逐个元素的比较。
Basic Discriminated Unions 支持 Equality 开箱即用,但对象不支持,这就是为什么一旦您添加 TypeNull
到列表比较失败。
试试这个:
type TypeNull() = class end
TypeNull() = TypeNull() // false
let actual = TypeNull()
let expected = TypeNull()
actual = expected // false
type TypeNull() = class end
let a = TypeNull()
let actual = a
let expected = a
actual = expected // true
type TypeNull = TypeNull
TypeNull = TypeNull // true
let actual = TypeNull
let expected = TypeNull
actual = expected // True
关于f# - 使用列表中的 Discriminated union 测试相等性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35728680/
我有以下定义: interface Dog { bark(): void; type: 'dog'; } interface Cat { meow(): void; type: 'ca
我正在研究一些通过EF4.3使用单表继承的代码。 有一个名为“用户”的实体和另一个名为“Admin”的实体。管理员继承自用户。 用户类 public class User { public i
我定义了不同的类型: type TypeNull() = class end type MyType1 = { a:int; b:int } type MyType2 = {
根据用户的 Web 浏览器添加“特殊”但不必要的内容是否可以接受?例如,是否可以显示这个: 在我所有 IE 用户的网页顶部? 最佳答案 谁可以接受?我个人认为这是一个相当蹩脚的网站的标志——它上面有一
如果这个问题很简单,我很抱歉,但我是 C++ 的新手。我正在设计一个使用二次公式计算 2 个根的程序。但是,当我的判别式为负数时,我的程序不起作用。 #define _USE_MATH_DEFINES
在某些程序中运行 addr2line 时,我在行尾收到“鉴别器 N”注释: main at/tmp/nsievebits.c:56(鉴别器 3) 手册页没有提到它,快速的谷歌搜索似乎表明主要是源代码文
我正在使用带有 MySql 数据库的 Visual Studio 2013 Web 表单应用程序来构建 Web 表单应用程序,但我一直无法通过“成员资格和角色管理”。我对成员资格使用了数据库优先方法,
我有一个非常简单的问题,但现在似乎看不出重点。我的目的是读取 VehicleCollector 对象列表,每个对象都有一个整齐的汽车列表和另一个火车列表。车辆来自一个表,并由名为 TYPE 的列区分。
使用这些类,您将如何将“Person”的记录更改为“Employee”。 /** * @Entity * @InheritanceType("SINGLE_TABLE") * @Discrimi
我已经尝试搜索文档和代码,但我无法找到这是什么以及如何更正它。 场景: 我正在使用 Ada SPARK 向量库并且我有以下代码: package MyPackage with SPARK_Mode
鉴于这两个歧视工会,我想得到 DeclaringType从一个案例来看。 type SingleCaseUnion = | One type MultiCaseUnion = | Tw
我正在使用 EF CF 方法创建一个带有 MySQL 的网站。由于某种原因,EF 在我的 Post 表中创建了一个名为“Discriminator”的列,并包含 VARCHAR“Post”。 为什么要
我有以下 json { "status": 1, "msg": "Success", "data": { "getFeeCount": [
我有一个后端 API(实现 ApiController ),我想将其放在 APIM API 后面。 ApiController 允许我们根据传入的查询参数区分两个不同的 GET 操作。当我尝试在 AP
我正在尝试创建一个新的 Set 类型: type MySet = | List of list | Sequence of seq
Mongo 文档 http://mongodb.github.io/mongo-java-driver/3.11/bson/pojos/状态: The easiest way to enable a
我正在尝试使用 swagger-codegen 为模式规范生成 Java API 客户端。该架构使用供应商扩展x-discriminator-value来创建继承模型。 例如,我使用了我发现的模式规范
(我需要一位 Python 3 内部专家) 我有一个类装饰器,它修改了一些函数而不是其他函数。简化示例: import functools import inspect import types de
使用嵌套集合查看我的对象不会抛出错误,但在尝试保存实体时出现错误 [IndexOutOfRangeException: Invalid index 15 for SqlParameterCol
在我的项目中我有: public class BaseEntity { [Key] public int Id {get; set; } } 然后我必须定义 10 多个 POCO 类来
我是一名优秀的程序员,十分优秀!