- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Re: Re: (Idea) Customizable Iterable.mkString
Fri, 2011-12-16, 22:19
Nope. Iterators are a different abstration from collections. However, using views you can make some pretty peformant code without the need for direct iterator manipulation. I'd recommend looking into them.
On Fri, Dec 16, 2011 at 4:15 PM, Drew <drew@venarc.com> wrote:
On Fri, Dec 16, 2011 at 4:15 PM, Drew <drew@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