transformitem
Transformitem is a term used in several domains of software engineering to denote a unit that encapsulates a data transformation operation. It may refer to a data structure in ETL (extract, transform, load) pipelines, a node in a scene graph for graphics, or a wrapper around a function in a transformation workflow. The common idea is that a transformitem represents a discrete step that takes input data, applies a defined transformation, and yields output.
In data processing, a transformitem typically includes a transformation function, parameters, and metadata such as source
A typical implementation conceptually models a transformitem as an object or record with fields such as name
Variants of the idea appear in functional programming as higher-order transform wrappers, and in user interfaces