You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pipes that come prepackaged with Pipes.NET are not sufficient for every use case. In many situations, it will be necessary to create a pipe that will solve a particular mapping from an input to an output. Pipes make it easy to create new pipes with the AbstractPipe<S, E> class, as in most cases there is just a single method that needs to be implemented: Boolean AbstractPipe.MoveNext(). The example below demonstrates the internals of a simple pipe that maps a string to the number of characters contained in that string.