@[inline, reducible]
The monad of a finished Lake job.
Equations
Instances For
@[inline]
Equations
- Lake.Job.attempt self = Option.isSome <$> liftM (OptionT.run self)
@[inline]
Equations
- Lake.Job.attempt? self = some <$> OptionT.run self
@[inline]
Equations
- Lake.Job.async act = Lake.async act
@[inline]
Equations
- Lake.Job.await self = Lake.await self
@[inline]
def
Lake.Job.bindSync
{α : Type}
{β : Type}
(self : Lake.Job α)
(f : α → Lake.JobM β)
(prio : optParam Task.Priority Task.Priority.default)
:
Equations
- Lake.Job.bindSync self f prio = Lake.bindSync prio self f
@[inline]
def
Lake.Job.bindAsync
{α : Type}
{β : Type}
(self : Lake.Job α)
(f : α → Lake.SchedulerM (Lake.Job β))
:
Equations
- Lake.Job.bindAsync self f = Lake.bindAsync self f
@[inline, reducible]
A Lake build job.
Equations
- Lake.BuildJob α = Lake.Job (α × Lake.BuildTrace)
Instances For
- Lake.BuildJob.instAwaitBuildJobResultM
- Lake.BuildJob.instFunctorBuildJob
- Lake.BuildJob.instPureBuildJob
- Lake.BuildJob.instSeqWithAsyncBaseIOBuildJob
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobDynlib
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobFilePath
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobFilePath_1
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobFilePath_2
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobFilePath_3
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobFilePath_4
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobFilePath_5
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobFilePath_6
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobProdSearchPathArrayFilePath
- Lake.instFamilyDefNameModuleDataMkStrAnonymousBuildJobUnit
- Lake.instFamilyDefNamePackageDataMkStrAnonymousBuildJobUnit
- Lake.instFamilyDefNamePackageDataMkStrAnonymousBuildJobUnit_1
- Lake.instFamilyDefNameTargetDataHAppendInstHAppendInstAppendNameMkStr1MkStrAnonymousBuildJobFilePath
- Lake.instFamilyDefNameTargetDataHAppendInstHAppendInstAppendNameMkStr1MkStrAnonymousBuildJobFilePath_1
- Lake.instFamilyDefNameTargetDataHAppendInstHAppendInstAppendNameMkStr1MkStrAnonymousBuildJobUnit
- Lake.instFamilyDefNameTargetDataHAppendInstHAppendInstAppendNameMkStr1MkStrAnonymousBuildJobUnit_1
- Lake.instFamilyDefNameTargetDataMkStrAnonymousBuildJobDynlib
- Lake.instFamilyDefNameTargetDataMkStrAnonymousBuildJobFilePath
- Lake.instFamilyDefNameTargetDataMkStrAnonymousBuildJobFilePath_1
- Lake.instFamilyDefNameTargetDataMkStrAnonymousBuildJobFilePath_2
@[inline]
Equations
- Lake.BuildJob.mk job = job
@[inline]
Equations
- Lake.BuildJob.ofJob self = Lake.BuildJob.mk ((fun (x : Lake.BuildTrace) => ((), x)) <$> self)
@[inline]
Equations
- Lake.BuildJob.toJob self = self
@[inline]
Equations
- Lake.BuildJob.nil = Lake.BuildJob.mk (pure ((), Lake.nilTrace))
@[inline]
Equations
- Lake.BuildJob.pure a = Lake.BuildJob.mk (pure (a, Lake.nilTrace))
Equations
- Lake.BuildJob.instPureBuildJob = { pure := fun {α : Type u_1} => Lake.BuildJob.pure }
@[inline]
Equations
- One or more equations did not get rendered due to their size.
@[inline]
Equations
- One or more equations did not get rendered due to their size.
@[inline]
Equations
- Lake.BuildJob.map f self = Lake.BuildJob.mk ((fun (x : α × Lake.BuildTrace) => match x with | (a, t) => (f a, t)) <$> Lake.BuildJob.toJob self)
Equations
- Lake.BuildJob.instFunctorBuildJob = { map := fun {α β : Type u_1} => Lake.BuildJob.map, mapConst := fun {α β : Type u_1} => Lake.BuildJob.map ∘ Function.const β }
@[inline]
def
Lake.BuildJob.mapWithTrace
{α : Type u_1}
{β : Type u_1}
(f : α → Lake.BuildTrace → β × Lake.BuildTrace)
(self : Lake.BuildJob α)
:
Equations
- Lake.BuildJob.mapWithTrace f self = Lake.BuildJob.mk ((fun (x : α × Lake.BuildTrace) => match x with | (a, t) => f a t) <$> Lake.BuildJob.toJob self)
@[inline]
def
Lake.BuildJob.bindSync
{α : Type}
{β : Type}
(self : Lake.BuildJob α)
(f : α → Lake.BuildTrace → Lake.JobM β)
(prio : optParam Task.Priority Task.Priority.default)
:
Equations
- Lake.BuildJob.bindSync self f prio = Lake.Job.bindSync (Lake.BuildJob.toJob self) (fun (x : α × Lake.BuildTrace) => match x with | (a, t) => f a t) prio
@[inline]
def
Lake.BuildJob.bindAsync
{α : Type}
{β : Type}
(self : Lake.BuildJob α)
(f : α → Lake.BuildTrace → Lake.SchedulerM (Lake.Job β))
:
Equations
- Lake.BuildJob.bindAsync self f = Lake.Job.bindAsync (Lake.BuildJob.toJob self) fun (x : α × Lake.BuildTrace) => match x with | (a, t) => f a t
@[inline]
Equations
- Lake.BuildJob.await self = (fun (x : α × Lake.BuildTrace) => x.fst) <$> Lake.await (Lake.BuildJob.toJob self)
Equations
- Lake.BuildJob.instAwaitBuildJobResultM = { await := fun {α : Type} => Lake.BuildJob.await }
@[inline]
Equations
- Lake.BuildJob.materialize self = discard (Lake.await (Lake.BuildJob.toJob self))
def
Lake.BuildJob.add
{α : Type}
{β : Type}
(t1 : Lake.BuildJob α)
(t2 : Lake.BuildJob β)
:
BaseIO (Lake.BuildJob α)
Equations
- Lake.BuildJob.add t1 t2 = Lake.BuildJob.mk <$> Lake.seqLeftAsync (Lake.BuildJob.toJob t1) (Lake.BuildJob.toJob t2)
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
def
Lake.BuildJob.seqWithAsync
{α : Type}
{β : Type}
{γ : Type}
(f : α → β → γ)
(t1 : Lake.BuildJob α)
(t2 : Lake.BuildJob β)
:
BaseIO (Lake.BuildJob γ)
Equations
- One or more equations did not get rendered due to their size.
Equations
- Lake.BuildJob.instSeqWithAsyncBaseIOBuildJob = { seqWithAsync := fun {γ α β : Type} => Lake.BuildJob.seqWithAsync }
def
Lake.BuildJob.collectList
{α : Type}
(jobs : List (Lake.BuildJob α))
:
BaseIO (Lake.BuildJob (List α))
Equations
- Lake.BuildJob.collectList jobs = List.foldrM (Lake.seqWithAsync List.cons) (pure []) jobs
def
Lake.BuildJob.collectArray
{α : Type}
(jobs : Array (Lake.BuildJob α))
:
BaseIO (Lake.BuildJob (Array α))
Equations
- Lake.BuildJob.collectArray jobs = Array.foldlM (Lake.seqWithAsync Array.push) (pure #[]) jobs 0