ZPipeline

zio.stream.ZPipeline
See theZPipeline companion class
object ZPipeline

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
ZPipeline.type

Members list

Type members

Classlikes

final class EnvironmentWithPipelinePartiallyApplied[Env](dummy: Boolean) extends AnyVal

Attributes

Supertypes
class AnyVal
trait Matchable
class Any
final class ServiceWithPipelinePartiallyApplied[Service](dummy: Boolean) extends AnyVal

Attributes

Supertypes
class AnyVal
trait Matchable
class Any
final class UnwrapScopedPartiallyApplied[Env](dummy: Boolean) extends AnyVal

Attributes

Supertypes
class AnyVal
trait Matchable
class Any

Value members

Concrete methods

def aggregateAsync[Env, Err, In, Out](sink: => ZSink[Env, Err, In, In, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Aggregates elements of this stream using the provided sink for as long as the downstream operators on the stream are busy.

Aggregates elements of this stream using the provided sink for as long as the downstream operators on the stream are busy.

This operator divides the stream into two asynchronous "islands". Operators upstream of this operator run on one fiber, while downstream operators run on another. Whenever the downstream fiber is busy processing elements, the upstream fiber will feed elements into the sink until it signals completion.

Any sink can be used here, but see ZSink.foldWeightedZIO and ZSink.foldUntilZIO for sinks that cover the common usecases.

Attributes

def aggregateAsyncWithin[Env, Err, In, Out](sink: => ZSink[Env, Err, In, In, Out], schedule: => Schedule[Env, Option[Out], Any])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Like aggregateAsyncWithinEither, but only returns the Right results.

Like aggregateAsyncWithinEither, but only returns the Right results.

Attributes

def aggregateAsyncWithinEither[Env, Err, In, Out, Out2](sink: => ZSink[Env, Err, In, In, Out], schedule: => Schedule[Env, Option[Out], Out2])(implicit trace: Trace): ZPipeline[Env, Err, In, Either[Out2, Out]]

Aggregates elements using the provided sink until it completes, or until the delay signalled by the schedule has passed.

Aggregates elements using the provided sink until it completes, or until the delay signalled by the schedule has passed.

This operator divides the stream into two asynchronous islands. Operators upstream of this operator run on one fiber, while downstream operators run on another. Elements will be aggregated by the sink until the downstream fiber pulls the aggregated value, or until the schedule's delay has passed.

Aggregated elements will be fed into the schedule to determine the delays between pulls.

Attributes

def append[In](values: => Chunk[In])(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]
def apply[In](implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

A shorter version of ZPipeline.identity, which can facilitate more compact definition of pipelines.

A shorter version of ZPipeline.identity, which can facilitate more compact definition of pipelines.

ZPipeline[Int] >>> ZPipeline.filter(_ % 2 != 0)

Attributes

def branchAfter[Env, Err, In, Out](n: => Int)(f: Chunk[In] => ZPipeline[Env, Err, In, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

A dynamic pipeline that first collects n elements from the stream, then creates another pipeline with the function f and sends all the following elements through that.

A dynamic pipeline that first collects n elements from the stream, then creates another pipeline with the function f and sends all the following elements through that.

Attributes

def changes[Err, In](implicit trace: Trace): ZPipeline[Any, Err, In, In]
def changesWith[Err, In](f: (In, In) => Boolean)(implicit trace: Trace): ZPipeline[Any, Err, In, In]
def changesWithZIO[Env, Err, In](f: (In, In) => ZIO[Env, Err, Boolean])(implicit trace: Trace): ZPipeline[Env, Err, In, In]
def chunks[In](implicit trace: Trace): ZPipeline[Any, Nothing, In, Chunk[In]]

Creates a pipeline that exposes the chunk structure of the stream.

Creates a pipeline that exposes the chunk structure of the stream.

Attributes

def collect[In, Out](f: PartialFunction[In, Out])(implicit trace: Trace): ZPipeline[Any, Nothing, In, Out]

Creates a pipeline that collects elements with the specified partial function.

Creates a pipeline that collects elements with the specified partial function.

ZPipeline.collect[Option[Int], Int] { case Some(v) => v }

Attributes

def collectLeft[Err, A, B](implicit trace: Trace): ZPipeline[Any, Err, Either[A, B], A]
def collectRight[Err, A, B](implicit trace: Trace): ZPipeline[Any, Err, Either[A, B], B]
def collectSome[Err, A](implicit trace: Trace): ZPipeline[Any, Err, Option[A], A]
def collectSuccess[A, B](implicit trace: Trace): ZPipeline[Any, Nothing, Exit[B, A], A]
def collectWhile[Err, In, Out](pf: PartialFunction[In, Out])(implicit trace: Trace): ZPipeline[Any, Err, In, Out]
def collectWhileLeft[Err, A, B](implicit trace: Trace): ZPipeline[Any, Err, Either[A, B], A]
def collectWhileRight[Err, A, B](implicit trace: Trace): ZPipeline[Any, Err, Either[A, B], B]
def collectWhileSome[Err, A](implicit trace: Trace): ZPipeline[Any, Err, Option[A], A]
def collectWhileSuccess[Err, A](implicit trace: Trace): ZPipeline[Any, Nothing, Exit[Err, A], A]
def collectWhileZIO[Env, Err, In, Out](pf: PartialFunction[In, ZIO[Env, Err, Out]])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]
def debounce[In](d: => Duration)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Delays the emission of values by holding new values for a set duration. If no new values arrive during that time the value is emitted, however if a new value is received during the holding period the previous value is discarded and the process is repeated with the new value.

Delays the emission of values by holding new values for a set duration. If no new values arrive during that time the value is emitted, however if a new value is received during the holding period the previous value is discarded and the process is repeated with the new value.

This operator is useful if you have a stream of "bursty" events which eventually settle down and you only need the final event of the burst.

Attributes

Example

A search engine may only want to initiate a search after a user has paused typing so as to not prematurely recommend results.

def decodeCharsWith(charset: => Charset, bufSize: => Int)(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, Char]

Creates a pipeline that decodes a stream of bytes into a stream of characters using the given charset

Creates a pipeline that decodes a stream of bytes into a stream of characters using the given charset

Attributes

def decodeCharsWithDecoder(charsetDecoder: => CharsetDecoder, bufSize: => Int)(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, Char]

Creates a pipeline that decodes a stream of bytes into a stream of characters using the given charset decoder.

Creates a pipeline that decodes a stream of bytes into a stream of characters using the given charset decoder.

Attributes

def decodeStringWith(charset: => Charset)(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that decodes a stream of bytes into a stream of strings using the given charset

Creates a pipeline that decodes a stream of bytes into a stream of strings using the given charset

Attributes

def drain[Err](implicit trace: Trace): ZPipeline[Any, Err, Any, Nothing]
def drop[In](n: => Int)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Creates a pipeline that drops n elements.

Creates a pipeline that drops n elements.

Attributes

def dropRight[Err, In](n: => Int)(implicit trace: Trace): ZPipeline[Any, Err, In, In]
def dropUntil[In](f: In => Boolean)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Creates a pipeline that drops elements until the specified predicate evaluates to true.

Creates a pipeline that drops elements until the specified predicate evaluates to true.

ZPipeline.dropUntil[Int](_ > 100)

Attributes

def dropUntilZIO[Env, Err, In](p: In => ZIO[Env, Err, Boolean])(implicit trace: Trace): ZPipeline[Env, Err, In, In]

Drops incoming elements until the effectful predicate p is satisfied.

Drops incoming elements until the effectful predicate p is satisfied.

Attributes

def dropWhile[In](f: In => Boolean)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Creates a pipeline that drops elements while the specified predicate evaluates to true.

Creates a pipeline that drops elements while the specified predicate evaluates to true.

ZPipeline.dropWhile[Int](_ <= 100)

Attributes

def dropWhileZIO[Env, Err, In, Out](p: In => ZIO[Env, Err, Boolean])(implicit trace: Trace): ZPipeline[Env, Err, In, In]

Drops incoming elements as long as the effectful predicate p is satisfied.

Drops incoming elements as long as the effectful predicate p is satisfied.

Attributes

def encodeCharsWith(charset: => Charset, bufferSize: => Int)(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Char, Byte]

Creates a pipeline that converts a stream of characters into a stream of bytes using the given charset

Creates a pipeline that converts a stream of characters into a stream of bytes using the given charset

Attributes

def encodeStringWith(charset: => Charset, bom: => Chunk[Byte])(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the given charset

Creates a pipeline that converts a stream of strings into a stream of bytes using the given charset

Attributes

Accesses the environment of the pipeline in the context of a pipeline.

Accesses the environment of the pipeline in the context of a pipeline.

Attributes

def filter[In](f: In => Boolean)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Creates a pipeline that filters elements according to the specified predicate.

Creates a pipeline that filters elements according to the specified predicate.

Attributes

def filterZIO[Env, Err, In](f: In => ZIO[Env, Err, Boolean])(implicit trace: Trace): ZPipeline[Env, Err, In, In]
def flattenChunks[In](implicit trace: Trace): ZPipeline[Any, Nothing, Chunk[In], In]

Creates a pipeline that submerges chunks into the structure of the stream.

Creates a pipeline that submerges chunks into the structure of the stream.

Attributes

def flattenExit[Err, Out](implicit trace: Trace): ZPipeline[Any, Err, Exit[Err, Out], Out]

Creates a pipeline that converts exit results into a stream of values with failure terminating the stream.

Creates a pipeline that converts exit results into a stream of values with failure terminating the stream.

Attributes

def flattenIterables[Out](implicit trace: Trace): ZPipeline[Any, Nothing, Iterable[Out], Out]

Creates a pipeline that submerges iterables into the structure of the stream.

Creates a pipeline that submerges iterables into the structure of the stream.

Attributes

def flattenStreamsPar[Env, Err, Out](n: => Int, outputBuffer: => Int)(implicit trace: Trace): ZPipeline[Env, Err, ZStream[Env, Err, Out], Out]

Creates a pipeline that flattens a stream of streams into a single stream of values. The streams are merged in parallel up to the specified maximum concurrency and will buffer up to output buffer size elements.

Creates a pipeline that flattens a stream of streams into a single stream of values. The streams are merged in parallel up to the specified maximum concurrency and will buffer up to output buffer size elements.

Attributes

def flattenTake[Err, Out](implicit trace: Trace): ZPipeline[Any, Err, Take[Err, Out], Out]

Creates a pipeline that flattens a stream of takes.

Creates a pipeline that flattens a stream of takes.

Attributes

def fromChannel[Env, Err, In, Out](channel: => ZChannel[Env, Nothing, Chunk[In], Any, Err, Chunk[Out], Any]): ZPipeline[Env, Err, In, Out]

Creates a pipeline that sends all the elements through the given channel.

Creates a pipeline that sends all the elements through the given channel.

Attributes

def fromFunction[Env, Err, In, Out](f: ZStream[Any, Nothing, In] => ZStream[Env, Err, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Constructs a pipeline from a stream transformation function.

Constructs a pipeline from a stream transformation function.

Attributes

def fromPush[Env, Err, In, Out](push: => ZIO[Scope & Env, Nothing, Option[Chunk[In]] => ZIO[Env, Err, Chunk[Out]]])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Creates a pipeline from a chunk processing function.

Creates a pipeline from a chunk processing function.

Attributes

def fromSink[Env, Err, In, Out](sink: => ZSink[Env, Err, In, In, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Creates a pipeline that repeatedly sends all elements through the given sink.

Creates a pipeline that repeatedly sends all elements through the given sink.

Attributes

def groupAdjacentBy[In, Key](f: In => Key)(implicit trace: Trace): ZPipeline[Any, Nothing, In, (Key, NonEmptyChunk[In])]

Creates a pipeline that groups on adjacent keys, calculated by function f.

Creates a pipeline that groups on adjacent keys, calculated by function f.

Attributes

def grouped[In](chunkSize: => Int)(implicit trace: Trace): ZPipeline[Any, Nothing, In, Chunk[In]]
def groupedWithin[In](chunkSize: => Int, within: => Duration)(implicit trace: Trace): ZPipeline[Any, Nothing, In, Chunk[In]]

Partitions the stream with the specified chunkSize or until the specified duration has passed, whichever is satisfied first.

Partitions the stream with the specified chunkSize or until the specified duration has passed, whichever is satisfied first.

Attributes

def hexDecode(implicit trace: Trace): ZPipeline[Any, EncodingException, Char, Byte]

Decode each pair of hex digit input characters (both lower or upper case letters are allowed) as one output byte.

Decode each pair of hex digit input characters (both lower or upper case letters are allowed) as one output byte.

Attributes

def hexEncode(implicit trace: Trace): ZPipeline[Any, Nothing, Byte, Char]

Encode each input byte as two output bytes as the hex representation of the input byte.

Encode each input byte as two output bytes as the hex representation of the input byte.

Attributes

def identity[In](implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

The identity pipeline, which does not modify streams in any way.

The identity pipeline, which does not modify streams in any way.

Attributes

def intersperse[Err, In](middle: => In)(implicit trace: Trace): ZPipeline[Any, Err, In, In]
def intersperse[In](start: => In, middle: => In, end: => In)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]
def iso_8859_1Decode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the ISO_8859_1 charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the ISO_8859_1 charset

Attributes

def iso_8859_1Encode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the ISO_8859_1 charset

Creates a pipeline that converts a stream of strings into a stream of bytes using the ISO_8859_1 charset

Attributes

def map[In, Out](f: In => Out)(implicit trace: Trace): ZPipeline[Any, Nothing, In, Out]

Creates a pipeline that maps elements with the specified function.

Creates a pipeline that maps elements with the specified function.

Attributes

def mapAccum[In, State, Out](s: => State)(f: (State, In) => (State, Out))(implicit trace: Trace): ZPipeline[Any, Nothing, In, Out]

Creates a pipeline that statefully maps elements with the specified function.

Creates a pipeline that statefully maps elements with the specified function.

Attributes

def mapAccumZIO[Env, Err, In, State, Out](s: => State)(f: (State, In) => ZIO[Env, Err, (State, Out)])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Creates a pipeline that statefully maps elements with the specified effect.

Creates a pipeline that statefully maps elements with the specified effect.

Attributes

def mapChunks[In, Out](f: Chunk[In] => Chunk[Out])(implicit trace: Trace): ZPipeline[Any, Nothing, In, Out]

Creates a pipeline that maps chunks of elements with the specified function.

Creates a pipeline that maps chunks of elements with the specified function.

Attributes

def mapChunksZIO[Env, Err, In, Out](f: Chunk[In] => ZIO[Env, Err, Chunk[Out]])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Creates a pipeline that maps chunks of elements with the specified effect.

Creates a pipeline that maps chunks of elements with the specified effect.

Attributes

def mapStream[Env, Err, In, Out](f: In => ZStream[Env, Err, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Creates a pipeline that maps elements with the specified function that returns a stream.

Creates a pipeline that maps elements with the specified function that returns a stream.

Attributes

def mapZIO[Env, Err, In, Out](f: In => ZIO[Env, Err, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Creates a pipeline that maps elements with the specified effectful function.

Creates a pipeline that maps elements with the specified effectful function.

Attributes

def mapZIOPar[Env, Err, In, Out](n: => Int)(f: In => ZIO[Env, Err, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Maps over elements of the stream with the specified effectful function, executing up to n invocations of f concurrently. Transformed elements will be emitted in the original order.

Maps over elements of the stream with the specified effectful function, executing up to n invocations of f concurrently. Transformed elements will be emitted in the original order.

Attributes

Note

This combinator destroys the chunking structure. It's recommended to use rechunk afterwards.

def mapZIOParUnordered[Env, Err, In, Out](n: => Int)(f: In => ZIO[Env, Err, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Maps over elements of the stream with the specified effectful function, executing up to n invocations of f concurrently. The element order is not enforced by this combinator, and elements may be reordered.

Maps over elements of the stream with the specified effectful function, executing up to n invocations of f concurrently. The element order is not enforced by this combinator, and elements may be reordered.

Attributes

def prepend[In](values: => Chunk[In])(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Emits the provided chunk before emitting any other value.

Emits the provided chunk before emitting any other value.

Attributes

def rechunk[In](n: => Int)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

A pipeline that rechunks the stream into chunks of the specified size.

A pipeline that rechunks the stream into chunks of the specified size.

Attributes

def sample[In](p: => Double)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Creates a pipeline that randomly samples elements according to the specified percentage.

Creates a pipeline that randomly samples elements according to the specified percentage.

Attributes

def scan[In, Out](s: => Out)(f: (Out, In) => Out)(implicit trace: Trace): ZPipeline[Any, Nothing, In, Out]

Creates a pipeline that scans elements with the specified function.

Creates a pipeline that scans elements with the specified function.

Attributes

def scanZIO[Env, Err, In, Out](s: => Out)(f: (Out, In) => ZIO[Env, Err, Out])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Creates a pipeline that scans elements with the specified function.

Creates a pipeline that scans elements with the specified function.

Attributes

Accesses the specified service in the environment of the pipeline in the context of a pipeline.

Accesses the specified service in the environment of the pipeline in the context of a pipeline.

Attributes

def splitLines(implicit trace: Trace): ZPipeline[Any, Nothing, String, String]

Splits strings on newlines. Handles both Windows newlines (\r\n) and UNIX newlines (\n).

Splits strings on newlines. Handles both Windows newlines (\r\n) and UNIX newlines (\n).

Attributes

def splitOn(delimiter: => String)(implicit trace: Trace): ZPipeline[Any, Nothing, String, String]

Splits strings on a delimiter.

Splits strings on a delimiter.

Attributes

def splitOnChunk[In](delimiter: => Chunk[In])(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Splits strings on a delimiter.

Splits strings on a delimiter.

Attributes

def suspend[Env, Err, In, Out](pipeline: => ZPipeline[Env, Err, In, Out]): ZPipeline[Env, Err, In, Out]

Lazily constructs a pipeline.

Lazily constructs a pipeline.

Attributes

def take[In](n: => Long)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Creates a pipeline that takes n elements.

Creates a pipeline that takes n elements.

Attributes

def takeUntil[In](f: In => Boolean)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Creates a pipeline that takes elements until the specified predicate evaluates to true.

Creates a pipeline that takes elements until the specified predicate evaluates to true.

Attributes

def takeWhile[In](f: In => Boolean)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Creates a pipeline that takes elements while the specified predicate evaluates to true.

Creates a pipeline that takes elements while the specified predicate evaluates to true.

Attributes

def tap[Env, Err, In](f: In => ZIO[Env, Err, Any])(implicit trace: Trace): ZPipeline[Env, Err, In, In]

Adds an effect to consumption of every element of the pipeline.

Adds an effect to consumption of every element of the pipeline.

Attributes

def throttleEnforce[In](units: Long, duration: => Duration, burst: => Long)(costFn: Chunk[In] => Long)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Throttles the chunks of this pipeline according to the given bandwidth parameters using the token bucket algorithm. Allows for burst in the processing of elements by allowing the token bucket to accumulate tokens up to a units + burst threshold. Chunks that do not meet the bandwidth constraints are dropped. The weight of each chunk is determined by the costFn function.

Throttles the chunks of this pipeline according to the given bandwidth parameters using the token bucket algorithm. Allows for burst in the processing of elements by allowing the token bucket to accumulate tokens up to a units + burst threshold. Chunks that do not meet the bandwidth constraints are dropped. The weight of each chunk is determined by the costFn function.

Attributes

def throttleEnforceZIO[Env, Err, In](units: => Long, duration: => Duration, burst: => Long)(costFn: Chunk[In] => ZIO[Env, Err, Long])(implicit trace: Trace): ZPipeline[Env, Err, In, In]

Throttles the chunks of this pipeline according to the given bandwidth parameters using the token bucket algorithm. Allows for burst in the processing of elements by allowing the token bucket to accumulate tokens up to a units + burst threshold. Chunks that do not meet the bandwidth constraints are dropped. The weight of each chunk is determined by the costFn effectful function.

Throttles the chunks of this pipeline according to the given bandwidth parameters using the token bucket algorithm. Allows for burst in the processing of elements by allowing the token bucket to accumulate tokens up to a units + burst threshold. Chunks that do not meet the bandwidth constraints are dropped. The weight of each chunk is determined by the costFn effectful function.

Attributes

def throttleShape[In](units: => Long, duration: => Duration, burst: Long)(costFn: Chunk[In] => Long)(implicit trace: Trace): ZPipeline[Any, Nothing, In, In]

Delays the chunks of this pipeline according to the given bandwidth parameters using the token bucket algorithm. Allows for burst in the processing of elements by allowing the token bucket to accumulate tokens up to a units + burst threshold. The weight of each chunk is determined by the costFn function.

Delays the chunks of this pipeline according to the given bandwidth parameters using the token bucket algorithm. Allows for burst in the processing of elements by allowing the token bucket to accumulate tokens up to a units + burst threshold. The weight of each chunk is determined by the costFn function.

Attributes

def throttleShapeZIO[Env, Err, In](units: => Long, duration: => Duration, burst: => Long)(costFn: Chunk[In] => ZIO[Env, Err, Long])(implicit trace: Trace): ZPipeline[Env, Err, In, In]

Delays the chunks of this pipeline according to the given bandwidth parameters using the token bucket algorithm. Allows for burst in the processing of elements by allowing the token bucket to accumulate tokens up to a units + burst threshold. The weight of each chunk is determined by the costFn effectful function.

Delays the chunks of this pipeline according to the given bandwidth parameters using the token bucket algorithm. Allows for burst in the processing of elements by allowing the token bucket to accumulate tokens up to a units + burst threshold. The weight of each chunk is determined by the costFn effectful function.

Attributes

def unwrap[Env, Err, In, Out](zio: ZIO[Env, Err, ZPipeline[Env, Err, In, Out]])(implicit trace: Trace): ZPipeline[Env, Err, In, Out]

Creates a pipeline produced from an effect.

Creates a pipeline produced from an effect.

Attributes

Created a pipeline produced from a scoped effect.

Created a pipeline produced from a scoped effect.

Attributes

def usASCIIDecode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the US ASCII charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the US ASCII charset

Attributes

def usASCIIEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the US ASCII charset

Creates a pipeline that converts a stream of strings into a stream of bytes using the US ASCII charset

Attributes

def utf16BEDecode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_16BE charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_16BE charset

Attributes

def utf16BEEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16BE charset, without adding a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16BE charset, without adding a BOM

Attributes

def utf16BEWithBomEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16BE charset prefixing it with a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16BE charset prefixing it with a BOM

Attributes

def utf16Decode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_16 charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_16 charset

Attributes

def utf16Encode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16BE charset prefixing it with a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16BE charset prefixing it with a BOM

Attributes

def utf16LEDecode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_16LE charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_16LE charset

Attributes

def utf16LEEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16LE charset, without adding a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16LE charset, without adding a BOM

Attributes

def utf16LEWithBomEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16LE charset prefixing it with a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16LE charset prefixing it with a BOM

Attributes

def utf16WithBomEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16 charset prefixing it with a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_16 charset prefixing it with a BOM

Attributes

def utf32BEDecode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_32BE charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_32BE charset

Attributes

def utf32BEEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32BE charset, without adding a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32BE charset, without adding a BOM

Attributes

def utf32BEWithBomEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32BE charset prefixing it with a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32BE charset prefixing it with a BOM

Attributes

def utf32Decode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_32 charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_32 charset

Attributes

def utf32Encode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32BE charset, without adding a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32BE charset, without adding a BOM

Attributes

def utf32LEDecode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_32LE charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_32LE charset

Attributes

def utf32LEEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32LE charset, without adding a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32LE charset, without adding a BOM

Attributes

def utf32LEWithBomEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32LE charset prefixing it with a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32LE charset prefixing it with a BOM

Attributes

def utf32WithBomEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32BE charset prefixing it with a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_32BE charset prefixing it with a BOM

Attributes

def utf8Decode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_8 charset

Creates a pipeline that converts a stream of bytes into a stream of strings using the UTF_8 charset

Attributes

def utf8Encode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_8 charset, without adding a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_8 charset, without adding a BOM

Attributes

def utf8WithBomEncode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, String, Byte]

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_8 charset prefixing it with a BOM

Creates a pipeline that converts a stream of strings into a stream of bytes using the UTF_8 charset prefixing it with a BOM

Attributes

def utfDecode(implicit trace: Trace): ZPipeline[Any, CharacterCodingException, Byte, String]

utfDecode determines the right encoder to use based on the Byte Order Mark (BOM). If it doesn't detect one, it defaults to utf8Decode. In the case of utf16 and utf32 without BOM, utf16Decode and utf32Decode should be used instead as both default to their own default decoder respectively.

utfDecode determines the right encoder to use based on the Byte Order Mark (BOM). If it doesn't detect one, it defaults to utf8Decode. In the case of utf16 and utf32 without BOM, utf16Decode and utf32Decode should be used instead as both default to their own default decoder respectively.

Attributes

def zipWithIndex[In](implicit trace: Trace): ZPipeline[Any, Nothing, In, (In, Long)]

Zips this pipeline together with the index of elements.

Zips this pipeline together with the index of elements.

Attributes

def zipWithNext[In](implicit trace: Trace): ZPipeline[Any, Nothing, In, (In, Option[In])]

Zips each element with the next element if present.

Zips each element with the next element if present.

Attributes

def zipWithPrevious[In](implicit trace: Trace): ZPipeline[Any, Nothing, In, (Option[In], In)]
def zipWithPreviousAndNext[In](implicit trace: Trace): ZPipeline[Any, Nothing, In, (Option[In], In, Option[In])]