progress
This commit is contained in:
parent
6af72e525c
commit
145835ad5d
22 changed files with 153 additions and 90 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { makeGeneric } from "../generics/generics";
|
||||
import { Type } from "../type";
|
||||
import { Type } from "../primitives/types";
|
||||
import { typedFnType } from "../structures/types";
|
||||
import { Bool, Byte, Char, Double, Int } from "../primitives/types";
|
||||
import { deepEqual } from "../util";
|
||||
|
|
@ -32,10 +32,10 @@ const eq = x => y => deepEqual(x,y);
|
|||
const EqDict = {eq};
|
||||
|
||||
export const EqInstances = new Map([
|
||||
[Int, EqDict],
|
||||
[Bool, EqDict],
|
||||
[Int , EqDict],
|
||||
[Bool , EqDict],
|
||||
[Double, EqDict],
|
||||
[Byte, EqDict],
|
||||
[Char, EqDict],
|
||||
[Type, EqDict],
|
||||
[Byte , EqDict],
|
||||
[Char , EqDict],
|
||||
[Type , EqDict],
|
||||
]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue