Track_sizing_function.MinSourceOperations on the minimum sizing function component.
is_intrinsic t returns true if the min component is min-content, max-content, or auto.
is_min_or_max_content t returns true if the min component is min-content or max-content.
is_min_content t returns true if the min component is min-content.
is_max_content t returns true if the min component is max-content.
definite_value t parent_size resolves the min component to a concrete value.
Returns Some value for fixed lengths or percentages (when parent_size is Some). Returns None for intrinsic or flexible values.
definite_value_with_calc t parent_size calc_resolver resolves the min component, including calc() expressions.
The calc_resolver is called with a calc index and parent size to resolve calc values.
resolved_percentage_size t parent_size resolves percentage values.
Returns Some (value * parent_size) for percentage values. Returns None otherwise.