- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果 f# 编写了一个 etl 进程,它将在关系数据库中排序数据并将其转换为星型模式,为 3rd 方平台做好准备。因为我们正在对数据进行非规范化,所以我们(几乎)拥有重复的对象、类型和属性,这些对象、类型和属性散布在我们的系统中。到目前为止,我对此感到满意,因为对象的不同足以保证不同的功能,或者我们已经能够将公共(public)/共享属性分组到子记录中。
但是,我们现在添加的对象需要挑选系统的不同部分,并且不属于现有的公共(public)分组。
在尝试了几种不同的风格后,我开始使用界面,但使用它们感觉有些不对劲。有没有人遇到过这个问题并提出了不同的方法?
module rec MyModels =
type AccountType1 =
{ Id : int
Error : string option
Name : string option }
// PROBLEM: this get very bulky as more properties are shared
interface Props.Error<AccountType1> with member x.Optic = (fun _ -> x.Error), (fun v -> { x with Error = v })
interface Props.AccountId<AccountType1> with member x.Optic = (fun _ -> x.Id), (fun v -> { x with Id = v })
interface Props.AccountName<AccountType1> with member x.Optic = (fun _ -> x.Name), (fun v -> { x with Name = v })
type AccountType2 =
{ Id : int
Error : string option
AccountId : int
AccountName : string option
OtherValue : string }
interface Props.Error<AccountType2> with member x.Optic = (fun _ -> x.Error), (fun v -> { x with Error = v })
interface Props.AccountId<AccountType2> with member x.Optic = (fun _ -> x.AccountId), (fun v -> { x with AccountId = v })
interface Props.AccountName<AccountType2> with member x.Optic = (fun _ -> x.AccountName), (fun v -> { x with AccountName = v })
interface Props.OtherValue<AccountType2> with member x.Optic = (fun _ -> x.OtherValue), (fun v -> { x with OtherValue = v })
module Props =
type OpticProp<'a,'b> = (unit -> 'a) * ('a -> 'b)
// Common properties my models can share
// (I know they should start with an I)
type Error<'a> = abstract member Optic : OpticProp<string option, 'a>
let Error (h : Error<_>) = h.Optic
type AccountId<'a> = abstract member Optic : OpticProp<int, 'a>
let AccountId (h : AccountId<_>) = h.Optic
type AccountName<'a> = abstract member Optic : OpticProp<string option, 'a>
let AccountName (h : AccountName<_>) = h.Optic
type OtherValue<'a> = abstract member Optic : OpticProp<string, 'a>
let OtherValue (h : OtherValue<_>) = h.Optic
[<RequireQualifiedAccess>]
module Optics =
// Based on Aether
module Operators =
let inline (^.) o optic = (optic o |> fst) ()
let inline (^=) value optic = fun o -> (optic o |> snd) value
let inline get optic o =
let get, _ = optic o
get ()
let inline set optic v (o : 'a) : 'a =
let _, set = optic o
set v
open MyModels
open Optics.Operators
// Common functions that change the models
let error msg item =
item
|> (Some msg)^=Props.Error
|> Error
let accountName item =
match item^.Props.AccountId with
| 1 ->
item
|> (Some "Account 1")^=Props.AccountName
|> Ok
| 2 ->
item
|> (Some "Account 2")^=Props.AccountName
|> Ok
| _ ->
item
|> error "Can't find account"
let correctAccount item =
match item^.Props.AccountName with
| Some "Account 1" -> Ok item
| _ ->
item
|> error "This is not Account 1"
let otherValue lookup item =
let value = lookup ()
item
|> value^=Props.OtherValue
|> Ok
// Build the transform pipeline
let inline (>=>) a b =
fun value ->
match a value with
| Ok result -> b result
| Error error -> Error error
let account1TransformPipeline lookups = // Lookups can be passed around is needed
accountName
>=> correctAccount
let account2TransformPipeline lookups =
accountName
>=> correctAccount
>=> otherValue lookups
// Try out the pipelines
let account1 =
({ Id = 1; Error = None; Name = None } : AccountType1)
|> account1TransformPipeline ()
let account2 =
({ Id = 1; Error = None; AccountId = 1; AccountName = None; OtherValue = "foo" } : AccountType2)
|> account2TransformPipeline (fun () -> "bar")
最佳答案
我不太确定如何使您的解决方案更简单——我认为在您的方法中非常花哨地使用类型会使代码变得非常复杂。可能有其他方法可以简化这一点,同时保持某种类型的输入。同样,我认为在某些情况下,您需要实现的逻辑是相当动态的,然后可能值得使用一些更动态的技术,即使在 F# 中也是如此。
举个例子,这里是一个使用 Deedle data frame library 的例子。 .这使您可以将数据表示为数据框(列名称为字符串)。
在数据帧上编写您需要的两个清理操作相对容易 - 该库针对基于列的操作进行了优化,因此代码结构与您的有点不同(我们计算新列,然后将其替换为数据框):
let correctAccount idCol nameCol df =
let newNames = df |> Frame.getCol idCol |> Series.map (fun _ id ->
match id with
| 1 -> "Account 1"
| 2 -> "Account 2"
| _ -> failwith "Cannot find account")
df |> Frame.replaceCol nameCol newNames
let otherValue newValue df =
let newOther = df |> Frame.getCol "OtherValue" |> Series.mapAll (fun _ _ -> Some newValue)
df |> Frame.replaceCol "OtherValue" newOther
[ { Id = 1; Error = None; Name = None } ]
|> Frame.ofRecords
|> correctAccount "Id" "Name"
[ { Id = 1; Error = None; AccountId = 1; AccountName = None; OtherValue = "foo" } ]
|> Frame.ofRecords
|> correctAccount "Id" "AccountName"
|> otherValue "bar"
关于types - 跨类型共享功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55572427/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!