This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using LinqToDB; | |
using LinqToDB.Common; | |
using LinqToDB.Data; | |
using LinqToDB.DataProvider.DB2iSeries; | |
using LinqToDB.Linq; | |
using LinqToDB.SqlQuery; | |
using Microsoft.FSharp.Core; | |
using System; | |
using System.Linq; | |
using System.Data.Common; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE | |
DeriveGeneric | |
, TypeSynonymInstances | |
, FlexibleInstances | |
, TemplateHaskell | |
#-} | |
module AesonUnit where | |
import Data.Aeson |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE | |
DeriveGeneric | |
, TypeSynonymInstances | |
, FlexibleInstances | |
, TemplateHaskell | |
#-} | |
module AesonUnitTypes where | |
import Data.Aeson |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE | |
DeriveGeneric | |
, TypeSynonymInstances | |
, FlexibleInstances | |
#-} | |
module AesonUnitTypeclasses where | |
import Data.Aeson | |
import GHC.Generics |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE | |
MultiParamTypeClasses | |
, FunctionalDependencies | |
, TemplateHaskellQuotes | |
#-} | |
module SimpleValidate | |
( module SimpleValidate | |
, Name | |
, mkName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE | |
MultiParamTypeClasses | |
, FunctionalDependencies | |
, TemplateHaskellQuotes | |
#-} | |
module SimpleValidate | |
( module SimpleValidate | |
, Name | |
, mkName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE | |
MultiParamTypeClasses | |
, FlexibleInstances | |
, FunctionalDependencies | |
, FlexibleContexts | |
, TemplateHaskellQuotes | |
#-} | |
module ValidateMonad where |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- NOTE: this module requires the row-types package. | |
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE DeriveGeneric #-} | |
{-# LANGUAGE OverloadedLabels #-} | |
{-# LANGUAGE PartialTypeSignatures #-} | |
{-# LANGUAGE TypeOperators #-} | |
module TypeList where | |
----------------------------------------------------------------------------------------------------------------------- |