This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Why does sliding have a type parameter?

2 replies
Cay Horstmann
Joined: 2009-09-04,
User offline. Last seen 42 years 45 weeks ago.
Here is the sliding method from IterableLike[A, Repr]:def sliding[B >: A](size: Int, step: Int): Iterator[Repr]

Why the [B >: A]? What B could be inferred from where?

Thanks,

Cay
dcsobral
Joined: 2009-04-23,
User offline. Last seen 38 weeks 5 days ago.
Re: Why does sliding have a type parameter?

https://issues.scala-lang.org/browse/SI-4778

On Fri, Sep 2, 2011 at 13:40, Cay Horstmann wrote:
> Here is the sliding method from IterableLike[A, Repr]:
>
> def sliding[B >: A](size: Int, step: Int): Iterator[Repr]
>
> Why the [B >: A]? What B could be inferred from where?
>
> Thanks,
>
> Cay
>

extempore
Joined: 2008-12-17,
User offline. Last seen 35 weeks 3 days ago.
Re: Why does sliding have a type parameter?

On 9/2/11 9:40 AM, Cay Horstmann wrote:
> Here is the sliding method from IterableLike[A, Repr]:
>
> def sliding[B >: A](size: Int, step: Int): Iterator[Repr]

If you wonder how such a crazy thing could happen, realize that I moved
sliding over from Iterator (and now try to remove it from Iterator's
sliding.) I would design it rather differently knowing what I know now.

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland