Algorithm<T> concat(Algorithm<T>? operand) { if (operand != null) _flow.get = [...(_flow.get ?? []), ...(operand._flow.get ?? [])]; return this; }