show/hide this revision's text 2 deleted 444 characters in body
  • First, pull your chain out and wrap it in an anonymous functionInstead of writing this:

    for my $chain = sub { item ( map { ... } grep { ... } map { ... } map { ... } @_ };for my $item ( $chain->( @list ) ) { ... }
  • Then change your loop to run the chain on a single input element

  • write it like this:

    while ( my $chain input = sub { map { ... } grep { ... } map { ... } map calculcate_next_element() ) {    ... } @_ };for my $item ( $chain->( $input ) ) { ... }
  • Then wrap it in an outer loop that supplies those elements one at a time:

    my $chain = sub { map { ... } grep { ... } map { ... } map { ... } @_ } ;for my $input ( @list ) {    for my $item ( $chain->( $input ) ) { ... }

    If your input is an array anyway, you can use foreach as shown, because when iterating over an array it doesn’t make a copy but uses the array directly, so there is no overhead. Otherwise, write a while loop to calculate one $input at a time.

    This saves you from having to significantly rewrite your existing code, and as long as the list does not grow by several orders of magnitude during transformation, you get pretty nearly all the benefit than that a rewrite to iterator style would offer.

  • show/hide this revision's text 1

    [Sidenote: Be aware that each individual step along a map/grep chain is eager. If you give it a big list all at once, your problems start much sooner than at the final foreach.]

    What you can do to avoid a complete rewrite is to wrap your loop with an outer loop.

    1. First, pull your chain out and wrap it in an anonymous function:

      my $chain = sub { map { ... } grep { ... } map { ... } map { ... } @_ };
      for my $item ( $chain->( @list ) ) { ... }
      
    2. Then change your loop to run the chain on a single input element:

      my $chain = sub { map { ... } grep { ... } map { ... } map { ... } @_ };
      for my $item ( $chain->( $input ) ) { ... }
      
    3. Then wrap it in an outer loop that supplies those elements one at a time:

      my $chain = sub { map { ... } grep { ... } map { ... } map { ... } @_ };
      for my $input ( @list ) {
          for my $item ( $chain->( $input ) ) { ... }
      }
      

      If your input is an array anyway, you can use foreach as shown, because when iterating over an array it doesn’t make a copy but uses the array directly, so there is no overhead. Otherwise, write a while loop to calculate one $input at a time.

    This saves you from having to significantly rewrite your existing code, and as long as the list does not grow by several orders of magnitude during transformation, you get all the benefit than a rewrite to iterator style would offer.