Hi Larry,

# from Larry Wall
# on Thursday 11 September 2008 12:13:

>So when you put something into a list context, some of the values
>will be considered "easy", and some will be considered "hard".
>The basic question is whether we treat those the same or differently
>from a referential point of view.  ...
>The easy ones are the values that have already been calculated, 
>presumably...
>
>Suppose we have
>
>    my @a = 1..10;      # assume easy
>    my @b = =$socket;   # assume hard
>
>    for @a,@b {...}
>
>If the for list sees @b as hard and just copies @b's iterator into its
>own list for lazy evaluation, then it's going to end up iterating the
>socket without loading @b.  Contrariwise if @b is eagerly evaluated it
>might clobber the other iterator in the for list.  So those iterators
>must be kept unified.  It's not enough to copy out the iterators
>from the array; access to the hard elements of the array must still
>be modulated by the array container.  A snapshot of the array
> container will not do in this case.

If a lazy list is an array with an iterator welded onto the end, then:

  1 .. 10 is just: 1, 2, 3, weld_here iter(4, thru => 10)
  1 .. *  is just: 1, 2, 3, weld_here iter(4)

And because an iterator doesn't go backwards, the array has to remember 
the previous values to allow me to maintain the "just an array" 
abstraction, so after I asked for @a[3], the internal state is like:

  1 .. * becomes: 1, 2, 3, 4, weld_here iter(5)

>As a first shot at that definition, I'll submit:
>
>    1 .. $n     # easy
>    1 .. *      # hard
>
>On the other hand, I can argue that if the first expression is easy,
>then the first $n elements of 1..* should also be considered easy, and
>it's not hard till you try to get to the *.  :)
>
>It could also be that I'm confusing things here, of course, and that
>1..* is something easy and immutable that nevertheless cannot be
>calculated eagerly.

But you can take a copy of the "@a = 1 .. *" however you like as long 
as "just an array" holds such that @a[41] is always the same regardless 
of whether you (internally) have to kick the welded-on iter 27 times to 
get that element or have already passed it.  So in this case you could 
(internally) end up with two copies each holding their own iter() in 
different states while still giving the same result at the "just an 
array" level.  But this is just an optimization on the general case you 
stated of "must be modulated by the array container" and it is an 
optimization which is only possible for predictable iters.

So, perhaps the case is:

  1 .. $n  # bounded and predictable
  1 .. *   # unbounded and predictable
  =$handle # bounded and unpredictable
  =$socket # unbounded and unpredictable

By "unpredictable", I'm meaning simply that the value of a given element 
cannot be calculated independently by replicating a (pure) function 
f($i).  Perhaps a filehandle isn't a thorough example of that though?

What about:

  my @a = 1..*;
  my @b = =$socket;
  for @a,@b {...; @a = something(); ...}

or:

  my @a = 1..*;
  my @b = =$socket;
  my @c = (@a, @b);
  for @c {...; @a = something(); ...}

In the first case, changing @a changes the for() iterator but in the 
second, the for() will still be nibbling on 1..*, right?  So the 
welded-on-iter is basically by-reference until I do something under 
the "just an array" paradigm which breaks the weld?

  @a = 1..*;
  @a[-1] = 9; # @a = (9) now ?

That's just my thoughts from what I understand and sorry if introducing 
welding into the analogy causes bits of molten metal to go flying 
around ;-)

--Eric
-- 
"You can't win. You can't break even. You can't quit."
--Ginsberg's Restatement of the Three Laws of Thermodynamics
---------------------------------------------------
    http://scratchcomputing.com
---------------------------------------------------

Reply via email to