Skip to content

Reduce the number of usage of child<Column> for the sake of better performance.

Alexander Semke requested to merge work/refactor_child_count_usage into master

child<>() calls are expensive because internally every time the list of children is determined. In case there are multiple such calls in a loop it's better to get the list of children first and then to access the elements via at() or to use range based loops.

Merge request reports