The following code creates a Dimension that will be used to evaluate Player
objects during a pivot operation based on the value of their position
property:
const positions: string[] = ['Goalkeeper', 'Defender', 'Midfielder', 'Forward'];
const x = dimension(positions, property<Player>('position'));
See GitHub for a complete example.
Creates a predicate function Predicate for use in the dimension function to create a Dimension matching properties.