cutcutcodec.core.classes.node

General node of the assembly graph.

Classes

Node(in_streams, out_streams)

General node of the assembly graph.

Details

class cutcutcodec.core.classes.node.Node(in_streams: list[Stream] | tuple[Stream], out_streams: list[Stream] | tuple[Stream])[source]

General node of the assembly graph.

Parameters

copyboolean, default=True

If False, try to avoid realocation as much as possible. By default, the modifications are not inplace (readonly).

in_streamstuple[Stream, …]

The streams arriving on the node (readonly).

out_streamstuple[Stream, …]

The streams coming back on the node (readonly).