Safe Haskell | None |
---|---|
Language | Haskell2010 |
Documentation
data Availability m b Source #
Available !b | |
AvailableOnDemand !(DB m b) |
Instances
Show b => Show (Availability m b) Source # | |
Defined in Experimenter.Availability.Type showsPrec :: Int -> Availability m b -> ShowS # show :: Availability m b -> String # showList :: [Availability m b] -> ShowS # | |
NFData b => NFData (Availability m b) Source # | |
Defined in Experimenter.Availability.Type rnf :: Availability m b -> () # |
data AvailabilityListWhere Source #
GetAll | |
PrepInputWhere !(SqlExpr (Entity PrepInput) -> SqlExpr (Entity PrepInputValue) -> SqlQuery ()) | |
WarmUpInputWhere !(SqlExpr (Entity WarmUpInput) -> SqlExpr (Entity WarmUpInputValue) -> SqlQuery ()) | |
RepInputWhere !(SqlExpr (Entity RepInput) -> SqlExpr (Entity RepInputValue) -> SqlQuery ()) | |
PrepMeasureWhere !(SqlExpr (Entity PrepMeasure) -> SqlExpr (Entity PrepResultStep) -> SqlQuery ()) | |
WarmUpMeasureWhere !(SqlExpr (Entity WarmUpMeasure) -> SqlExpr (Entity WarmUpResultStep) -> SqlQuery ()) | |
RepMeasureWhere !(SqlExpr (Entity RepMeasure) -> SqlExpr (Entity RepResultStep) -> SqlQuery ()) |
Instances
Show AvailabilityListWhere Source # | |
Defined in Experimenter.Availability.Type showsPrec :: Int -> AvailabilityListWhere -> ShowS # show :: AvailabilityListWhere -> String # showList :: [AvailabilityListWhere] -> ShowS # |
data AvailabilityList m b Source #
AvailableList !(Int, [b]) (AvailabilityListWhere -> ConduitT () b (DB m) ()) | |
AvailableListOnDemand (Int, AvailabilityListWhere -> ConduitT () b (DB m) ()) |
Instances
Show b => Show (AvailabilityList m b) Source # | |
Defined in Experimenter.Availability.Type showsPrec :: Int -> AvailabilityList m b -> ShowS # show :: AvailabilityList m b -> String # showList :: [AvailabilityList m b] -> ShowS # | |
NFData b => NFData (AvailabilityList m b) Source # | |
Defined in Experimenter.Availability.Type rnf :: AvailabilityList m b -> () # |