rename function
This commit is contained in:
parent
97b4e83379
commit
e892ade34d
8 changed files with 26 additions and 19 deletions
|
|
@ -2,15 +2,15 @@ import {Int, Bool, Double, Byte} from "../primitives/symbols.js";
|
|||
import { makeListModule } from "../structures/list_common.js";
|
||||
import { makeProductType } from "../structures/product.js";
|
||||
import { makeSumType } from "../structures/sum.js";
|
||||
import { getListType, prodType, sumType } from "../type_registry.js";
|
||||
import { lsType, prodType, sumType } from "../type_registry.js";
|
||||
|
||||
const ListOfDouble = getListType(Double);
|
||||
const ListOfDouble = lsType(Double);
|
||||
const ListOfDoubleModule = makeListModule(Double);
|
||||
|
||||
const ListOfListOfDouble = getListType(ListOfDouble);
|
||||
const ListOfListOfDouble = lsType(ListOfDouble);
|
||||
const ListOfListOfDoubleModule = makeListModule(ListOfDouble);
|
||||
|
||||
const ListOfByte = getListType(Byte);
|
||||
const ListOfByte = lsType(Byte);
|
||||
const ListOfByteModule = makeListModule(Byte);
|
||||
|
||||
export const ModuleValues = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue