Pselect:
Filter:
Classes | Streams-Patterns-Events > Patterns > Filter

Pselect : FuncFilterPattern : FilterPattern : Pattern : AbstractFunction : Object

Filters values returned by a source pattern.

Description

This pattern will filter the source pattern using the supplied function func.

Values from the source pattern will be passed to func. Pselect will only return that value if the func returns true.

This is the pattern library's equivalent of select.

Class Methods

Pselect.new(func, pattern)

From superclass: FuncFilterPattern

Arguments:

func

A Function that takes one parameter (the next value from pattern) and returns a boolean.

pattern

The source Pattern.

Inherited class methods

Instance Methods

Inherited instance methods

Undocumented instance methods

.asStream

.embedInStream(inval)

Examples

The message select returns a Pselect when passed to a pattern.