- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
(Idea) Customizable Iterable.mkString
Fri, 2011-12-16, 21:17
Hi Everyone,
I was thinking that it would be useful to be able to pass a custom
function to turn elements into String to Itrable.mkString. Something
to replace
items.foldLeft("")((str, item) => {
val toAppend = if (str.isEmpty()) {
item.toCustomString
} else {
"," + item.toCustomString
}
str + toAppend
}
so instead will be able to write
items.mkString(",", _.toCustomString)
What does everybody think about this? Should I open an enhancement
JIRA for this?
Fri, 2011-12-16, 22:11
#2
Re: (Idea) Customizable Iterable.mkString
Oh wow, that looks nice. I'm not too familiar with views. Would that
create an extra collection?
Fri, 2011-12-16, 22:21
#3
Re: Re: (Idea) Customizable Iterable.mkString
No. the beauty of views is that they point at an existing collection.
On Fri, Dec 16, 2011 at 4:10 PM, Drew <drew@venarc.com> wrote:
On Fri, Dec 16, 2011 at 4:10 PM, Drew <drew@venarc.com> wrote:
Oh wow, that looks nice. I'm not too familiar with views. Would that
create an extra collection?
Fri, 2011-12-16, 22:31
#4
Re: (Idea) Customizable Iterable.mkString
Looking into views a bit more, seems like they don't apply to
Iterators, only Iterables
On Dec 16, 1:10 pm, Drew wrote:
> Oh wow, that looks nice. I'm not too familiar with views. Would that
> create an extra collection?
>
Fri, 2011-12-16, 22:31
#5
Re: (Idea) Customizable Iterable.mkString
Thanks Josh,
The problem that I'm trying to solve is that I'm reading the lines
from a file, parse it line by line and generate objects "Item" using
map() see
Source.fromURL("some file", "UTF-8").getLines().slice(start,
end).map((line) => { parse line and create items})
That returns an Iterator. Now I want to create JSON from the
collection by using your method, but Iterator doesn't have view. Any
advice?
On Dec 16, 1:15 pm, Drew wrote:
> Looking into views a bit more, seems like they don't apply to
> Iterators, only Iterables
>
> On Dec 16, 1:10 pm, Drew wrote:
>
>
>
>
>
>
>
> > Oh wow, that looks nice. I'm not too familiar with views. Would that
> > create an extra collection?
>
> > -- Drew
>
> > On Dec 16, 12:20 pm, Jason Zaugg wrote:
>
> > > On Sat, Dec 17, 2011 at 6:17 AM, Drew wrote:
> > > > Hi Everyone,
>
> > > > I was thinking that it would be useful to be able to pass a custom
> > > > function to turn elements into String to Itrable.mkString. Something
> > > > to replace
>
> > > > items.foldLeft("")((str, item) => {
> > > > val toAppend = if (str.isEmpty()) {
> > > > item.toCustomString
> > > > } else {
> > > > "," + item.toCustomString
> > > > }
> > > > str + toAppend
> > > > }
>
> > > > so instead will be able to write
>
> > > > items.mkString(",", _.toCustomString)
>
> > > I think that this is sufficient:
>
> > > items.view.map(_.toCustomString).mkString(",")
>
> > > -jason
Fri, 2011-12-16, 22:41
#6
Re: Re: (Idea) Customizable Iterable.mkString
On Fri, Dec 16, 2011 at 19:15, Drew wrote:
> Looking into views a bit more, seems like they don't apply to
> Iterators, only Iterables
That's because Iterators don't need views, since no new collection is
created when you call "map" on an Iterator.
>
> On Dec 16, 1:10 pm, Drew wrote:
>> Oh wow, that looks nice. I'm not too familiar with views. Would that
>> create an extra collection?
>>
Fri, 2011-12-16, 23:11
#7
Re: (Idea) Customizable Iterable.mkString
Thanks guys. What's a good reading to get to know the inner workings
of the Scala Collection's classes. I'm pretty new to Scala and I've
heard that it's very easy to shoot yourself in the food (memory leaks,
etc) using Scala collections if you don't know what you're doing. For
example, I didn't know the semantics that you guys talked about such
as "no new collection is created when you call "map" on an Iterator. "
or
On Dec 16, 1:34 pm, Daniel Sobral wrote:
> On Fri, Dec 16, 2011 at 19:15, Drew wrote:
> > Looking into views a bit more, seems like they don't apply to
> > Iterators, only Iterables
>
> That's because Iterators don't need views, since no new collection is
> created when you call "map" on an Iterator.
>
>
>
>
>
>
>
>
>
>
>
> > On Dec 16, 1:10 pm, Drew wrote:
> >> Oh wow, that looks nice. I'm not too familiar with views. Would that
> >> create an extra collection?
>
> >> -- Drew
>
> >> On Dec 16, 12:20 pm, Jason Zaugg wrote:
>
> >> > On Sat, Dec 17, 2011 at 6:17 AM, Drew wrote:
> >> > > Hi Everyone,
>
> >> > > I was thinking that it would be useful to be able to pass a custom
> >> > > function to turn elements into String to Itrable.mkString. Something
> >> > > to replace
>
> >> > > items.foldLeft("")((str, item) => {
> >> > > val toAppend = if (str.isEmpty()) {
> >> > > item.toCustomString
> >> > > } else {
> >> > > "," + item.toCustomString
> >> > > }
> >> > > str + toAppend
> >> > > }
>
> >> > > so instead will be able to write
>
> >> > > items.mkString(",", _.toCustomString)
>
> >> > I think that this is sufficient:
>
> >> > items.view.map(_.toCustomString).mkString(",")
>
> >> > -jason
>
> --
> Daniel C. Sobral
>
> I travel to the future all the time.
Fri, 2011-12-16, 23:31
#8
Re: Re: (Idea) Customizable Iterable.mkString
On Fri, Dec 16, 2011 at 19:51, Drew wrote:
> Thanks guys. What's a good reading to get to know the inner workings
> of the Scala Collection's classes. I'm pretty new to Scala and I've
> heard that it's very easy to shoot yourself in the food (memory leaks,
> etc) using Scala collections if you don't know what you're doing. For
> example, I didn't know the semantics that you guys talked about such
> as "no new collection is created when you call "map" on an Iterator. "
> or
Well, start here: http://docs.scala-lang.org/. It contains plenty of
resources about Scala all around.
There's a bare-bones overview of collections here:
http://docs.scala-lang.org/tutorials/FAQ/collections.html
There's a walk-through (by Odersky) here:
http://docs.scala-lang.org/overviews/collections/introduction.html
And the inner workings are explained here:
http://docs.scala-lang.org/overviews/core/architecture-of-scala-collecti...
>
> On Dec 16, 1:34 pm, Daniel Sobral wrote:
>> On Fri, Dec 16, 2011 at 19:15, Drew wrote:
>> > Looking into views a bit more, seems like they don't apply to
>> > Iterators, only Iterables
>>
>> That's because Iterators don't need views, since no new collection is
>> created when you call "map" on an Iterator.
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>>
>> > On Dec 16, 1:10 pm, Drew wrote:
>> >> Oh wow, that looks nice. I'm not too familiar with views. Would that
>> >> create an extra collection?
>>
>> >> -- Drew
>>
>> >> On Dec 16, 12:20 pm, Jason Zaugg wrote:
>>
>> >> > On Sat, Dec 17, 2011 at 6:17 AM, Drew wrote:
>> >> > > Hi Everyone,
>>
>> >> > > I was thinking that it would be useful to be able to pass a custom
>> >> > > function to turn elements into String to Itrable.mkString. Something
>> >> > > to replace
>>
>> >> > > items.foldLeft("")((str, item) => {
>> >> > > val toAppend = if (str.isEmpty()) {
>> >> > > item.toCustomString
>> >> > > } else {
>> >> > > "," + item.toCustomString
>> >> > > }
>> >> > > str + toAppend
>> >> > > }
>>
>> >> > > so instead will be able to write
>>
>> >> > > items.mkString(",", _.toCustomString)
>>
>> >> > I think that this is sufficient:
>>
>> >> > items.view.map(_.toCustomString).mkString(",")
>>
>> >> > -jason
>>
>> --
>> Daniel C. Sobral
>>
>> I travel to the future all the time.
Sat, 2011-12-17, 00:31
#9
Re: Re: (Idea) Customizable Iterable.mkString
Thanks Daniel
On Dec 16, 2011, at 2:25 PM, Daniel Sobral wrote:
> On Fri, Dec 16, 2011 at 19:51, Drew wrote:
>> Thanks guys. What's a good reading to get to know the inner workings
>> of the Scala Collection's classes. I'm pretty new to Scala and I've
>> heard that it's very easy to shoot yourself in the food (memory leaks,
>> etc) using Scala collections if you don't know what you're doing. For
>> example, I didn't know the semantics that you guys talked about such
>> as "no new collection is created when you call "map" on an Iterator. "
>> or
>
> Well, start here: http://docs.scala-lang.org/. It contains plenty of
> resources about Scala all around.
>
> There's a bare-bones overview of collections here:
> http://docs.scala-lang.org/tutorials/FAQ/collections.html
>
> There's a walk-through (by Odersky) here:
> http://docs.scala-lang.org/overviews/collections/introduction.html
>
> And the inner workings are explained here:
> http://docs.scala-lang.org/overviews/core/architecture-of-scala-collecti...
>
>>
>> On Dec 16, 1:34 pm, Daniel Sobral wrote:
>>> On Fri, Dec 16, 2011 at 19:15, Drew wrote:
>>>> Looking into views a bit more, seems like they don't apply to
>>>> Iterators, only Iterables
>>>
>>> That's because Iterators don't need views, since no new collection is
>>> created when you call "map" on an Iterator.
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>> On Dec 16, 1:10 pm, Drew wrote:
>>>>> Oh wow, that looks nice. I'm not too familiar with views. Would that
>>>>> create an extra collection?
>>>
>>>>> -- Drew
>>>
>>>>> On Dec 16, 12:20 pm, Jason Zaugg wrote:
>>>
>>>>>> On Sat, Dec 17, 2011 at 6:17 AM, Drew wrote:
>>>>>>> Hi Everyone,
>>>
>>>>>>> I was thinking that it would be useful to be able to pass a custom
>>>>>>> function to turn elements into String to Itrable.mkString. Something
>>>>>>> to replace
>>>
>>>>>>> items.foldLeft("")((str, item) => {
>>>>>>> val toAppend = if (str.isEmpty()) {
>>>>>>> item.toCustomString
>>>>>>> } else {
>>>>>>> "," + item.toCustomString
>>>>>>> }
>>>>>>> str + toAppend
>>>>>>> }
>>>
>>>>>>> so instead will be able to write
>>>
>>>>>>> items.mkString(",", _.toCustomString)
>>>
>>>>>> I think that this is sufficient:
>>>
>>>>>> items.view.map(_.toCustomString).mkString(",")
>>>
>>>>>> -jason
>>>
>>> --
>>> Daniel C. Sobral
>>>
>>> I travel to the future all the time.
>
>
>
Sat, 2011-12-17, 01:01
#10
Re: Re: (Idea) Customizable Iterable.mkString
Just a note to be careful with Source. It does not clean up resources. I tend to use a traversable subclass to safely read lines of a file.
On Dec 16, 2011 4:30 PM, "Drew" <drew@venarc.com> wrote:Thanks Josh,
The problem that I'm trying to solve is that I'm reading the lines
from a file, parse it line by line and generate objects "Item" using
map() see
Source.fromURL("some file", "UTF-8").getLines().slice(start,
end).map((line) => { parse line and create items})
That returns an Iterator. Now I want to create JSON from the
collection by using your method, but Iterator doesn't have view. Any
advice?
On Dec 16, 1:15 pm, Drew <d...@venarc.com> wrote:
> Looking into views a bit more, seems like they don't apply to
> Iterators, only Iterables
>
> On Dec 16, 1:10 pm, Drew <d...@venarc.com> wrote:
>
>
>
>
>
>
>
> > Oh wow, that looks nice. I'm not too familiar with views. Would that
> > create an extra collection?
>
> > -- Drew
>
> > On Dec 16, 12:20 pm, Jason Zaugg <jza...@gmail.com> wrote:
>
> > > On Sat, Dec 17, 2011 at 6:17 AM, Drew <d...@venarc.com> wrote:
> > > > Hi Everyone,
>
> > > > I was thinking that it would be useful to be able to pass a custom
> > > > function to turn elements into String to Itrable.mkString. Something
> > > > to replace
>
> > > > items.foldLeft("")((str, item) => {
> > > > val toAppend = if (str.isEmpty()) {
> > > > item.toCustomString
> > > > } else {
> > > > "," + item.toCustomString
> > > > }
> > > > str + toAppend
> > > > }
>
> > > > so instead will be able to write
>
> > > > items.mkString(",", _.toCustomString)
>
> > > I think that this is sufficient:
>
> > > items.view.map(_.toCustomString).mkString(",")
>
> > > -jason
Sat, 2011-12-17, 04:11
#11
Re: Re: (Idea) Customizable Iterable.mkString
Thanks for the tip
On Dec 16, 2011, at 3:48 PM, Josh Suereth wrote:
On Dec 16, 2011, at 3:48 PM, Josh Suereth wrote:
Just a note to be careful with Source. It does not clean up resources. I tend to use a traversable subclass to safely read lines of a file.
On Dec 16, 2011 4:30 PM, "Drew" <drew@venarc.com> wrote:Thanks Josh,
The problem that I'm trying to solve is that I'm reading the lines
from a file, parse it line by line and generate objects "Item" using
map() see
Source.fromURL("some file", "UTF-8").getLines().slice(start,
end).map((line) => { parse line and create items})
That returns an Iterator. Now I want to create JSON from the
collection by using your method, but Iterator doesn't have view. Any
advice?
On Dec 16, 1:15 pm, Drew <d...@venarc.com> wrote:
> Looking into views a bit more, seems like they don't apply to
> Iterators, only Iterables
>
> On Dec 16, 1:10 pm, Drew <d...@venarc.com> wrote:
>
>
>
>
>
>
>
> > Oh wow, that looks nice. I'm not too familiar with views. Would that
> > create an extra collection?
>
> > -- Drew
>
> > On Dec 16, 12:20 pm, Jason Zaugg <jza...@gmail.com> wrote:
>
> > > On Sat, Dec 17, 2011 at 6:17 AM, Drew <d...@venarc.com> wrote:
> > > > Hi Everyone,
>
> > > > I was thinking that it would be useful to be able to pass a custom
> > > > function to turn elements into String to Itrable.mkString. Something
> > > > to replace
>
> > > > items.foldLeft("")((str, item) => {
> > > > val toAppend = if (str.isEmpty()) {
> > > > item.toCustomString
> > > > } else {
> > > > "," + item.toCustomString
> > > > }
> > > > str + toAppend
> > > > }
>
> > > > so instead will be able to write
>
> > > > items.mkString(",", _.toCustomString)
>
> > > I think that this is sufficient:
>
> > > items.view.map(_.toCustomString).mkString(",")
>
> > > -jason
I think that this is sufficient:
items.view.map(_.toCustomString).mkString(",")
-jason