Click or drag to resize
Akka.NETSourceUnfoldInfiniteTState, TElem Method

Namespace:  Akka.Streams.Dsl
Assembly:  Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public static Source<TElem, NotUsed> UnfoldInfinite<TState, TElem>(
	TState state,
	Func<TState, Tuple<TState, TElem>> unfold
)

Parameters

state
Type: TState
TBD
unfold
Type: SystemFuncTState, TupleTState, TElem
TBD

Type Parameters

TState
TBD
TElem
TBD

Return Value

Type: SourceTElem, NotUsed
TBD
Exceptions
ExceptionCondition
NotImplementedExceptionTBD
Examples
{{{
  Source.unfoldInf(01) {
   case (a, b) ⇒ (b → (a + b)) → a
  }
}}}
See Also