- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
ScalaDoc incorrect: Stack reverse returns a Seq
Sat, 2009-01-31, 03:23
Stack.reverse returns the correct elements in a Seq, the doc says it returns
a Stack
http://www.scala-lang.org/docu/files/api/scala/collection/immutable/Stac...
doc
Sat, 2009-01-31, 04:17
#2
Re: ScalaDoc incorrect: Stack reverse returns a Seq
immutable.Stack.reverse returns an immutable.Stack
mutable.Stack.reverse returns a Seq
http://www.scala-lang.org/docu/files/api/scala/collection/mutable/Stack.html
--j
On Fri, Jan 30, 2009 at 6:25 PM, treetrouble <ari.russo@gmail.com> wrote:
mutable.Stack.reverse returns a Seq
http://www.scala-lang.org/docu/files/api/scala/collection/mutable/Stack.html
--j
On Fri, Jan 30, 2009 at 6:25 PM, treetrouble <ari.russo@gmail.com> wrote:
Stack.reverse appears to be calling Seq.reverse
http://www.scala-lang.org/docu/files/api/scala/collection/immutable/Stack.html#top
doc
--
View this message in context: http://www.nabble.com/ScalaDoc-incorrect%3A-Stack-reverse-returns-a-Seq-tp21759110p21759110.html
Sent from the Scala - User mailing list archive at Nabble.com.
Sat, 2009-01-31, 18:27
#3
Re: ScalaDoc incorrect: Stack reverse returns a Seq
Ah, thank you! Do you know why it's like that?
Jorge Ortiz-3 wrote:
>
> immutable.Stack.reverse returns an immutable.Stack
>
> mutable.Stack.reverse returns a Seq
>
> http://www.scala-lang.org/docu/files/api/scala/collection/mutable/Stack....
>
> --j
>
> On Fri, Jan 30, 2009 at 6:25 PM, treetrouble wrote:
>
>>
>> Stack.reverse appears to be calling Seq.reverse
>>
>>
>> http://www.scala-lang.org/docu/files/api/scala/collection/immutable/Stac...
>> doc
>>
>> --
>> View this message in context:
>> http://www.nabble.com/ScalaDoc-incorrect%3A-Stack-reverse-returns-a-Seq-...
>> Sent from the Scala - User mailing list archive at Nabble.com.
>>
>>
>
>
Sun, 2009-02-01, 08:37
#4
Re: ScalaDoc incorrect: Stack reverse returns a Seq
Inherent limitations in how the collections library is implemented.
This kind of problem will most probably get resolved once the collections library uses higher-kinded types (so, Scala 2.8.0).
--j
On Sat, Jan 31, 2009 at 9:17 AM, treetrouble <ari.russo@gmail.com> wrote:
This kind of problem will most probably get resolved once the collections library uses higher-kinded types (so, Scala 2.8.0).
--j
On Sat, Jan 31, 2009 at 9:17 AM, treetrouble <ari.russo@gmail.com> wrote:
Ah, thank you! Do you know why it's like that?
Jorge Ortiz-3 wrote:
>
> immutable.Stack.reverse returns an immutable.Stack
>
> mutable.Stack.reverse returns a Seq
>
> http://www.scala-lang.org/docu/files/api/scala/collection/mutable/Stack.html
>
> --j
>
> On Fri, Jan 30, 2009 at 6:25 PM, treetrouble <ari.russo@gmail.com> wrote:
>
>>
>> Stack.reverse appears to be calling Seq.reverse
>>
>>
>> http://www.scala-lang.org/docu/files/api/scala/collection/immutable/Stack.html#top
>> doc
>>
>> --
>> View this message in context:
>> http://www.nabble.com/ScalaDoc-incorrect%3A-Stack-reverse-returns-a-Seq-tp21759110p21759110.html
>> Sent from the Scala - User mailing list archive at Nabble.com.
>>
>>
>
>
--
View this message in context: http://www.nabble.com/ScalaDoc-incorrect%3A-Stack-reverse-returns-a-Seq-tp21759110p21766009.html
Sent from the Scala - User mailing list archive at Nabble.com.
Stack.reverse appears to be calling Seq.reverse
http://www.scala-lang.org/docu/files/api/scala/collection/immutable/Stac...
doc