- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Newbie for sure(1st day)
Fri, 2012-01-06, 05:04
This is a 1st day question but I've wasted much to much time on it.
I can't use StringOps "product". I can use other "value members" like
indexOf. I can create my own product function. I just can't get
stringOps product to work. I've tried a dozen ways. Also, I can't find
1 example of the function in use.
Could someone provide a simple example that I can plug into the
Interpreter. Thanks in advance.
Fri, 2012-01-06, 06:31
#2
Re: Newbie for sure(1st day)
s/Set/Range/
On 2012-01-06 12:05 AM, "Tom Switzer" <thomas.switzer@gmail.com> wrote:
>
> (sending again cause I forgot to cc list)
>
> Product is analogous to sum, but for multiplication. It is actually not unique to StringOps, but is available on most collections. It doesn't make too much sense with Strings, but consider a list of Ints or a Set of Doubles.
>
> scala> Seq(4,6,11).product
> res1: Int = 264
>
> scala> 1.0 to 2.0 by 0.2 product
> res2: Double = 9.676799999999997
>
>
> On Thu, Jan 5, 2012 at 11:04 PM, <sporter99@msn.com> wrote:
>>
>> This is a 1st day question but I've wasted much to much time on it.
>>
>> I can't use StringOps "product". I can use other "value members" like
>> indexOf. I can create my own product function. I just can't get
>> stringOps product to work. I've tried a dozen ways. Also, I can't find
>> 1 example of the function in use.
>>
>> Could someone provide a simple example that I can plug into the
>> Interpreter. Thanks in advance.
>
>
Fri, 2012-01-06, 18:51
#3
Re: Newbie for sure(1st day)
On Thu, Jan 5, 2012 at 11:04 PM, wrote:
> This is a 1st day question but I've wasted much to much time on it.
>
> I can't use StringOps "product". I can use other "value members" like
> indexOf. I can create my own product function. I just can't get
> stringOps product to work. I've tried a dozen ways. Also, I can't find
> 1 example of the function in use.
>
> Could someone provide a simple example that I can plug into the
> Interpreter. Thanks in advance.
What are you wanting product to do on a String?
It does do something, just a weird useless something:
scala> "abc".product
res0: Char = ?
scala> "abc".product.toInt
res1: Int = 23590
scala> (('a' * 'b').toChar * 'c').toChar
res3: Char = ?
scala> (('a' * 'b').toChar * 'c').toChar.toInt
res2: Int = 23590
It's an unfortunate consequence of Char being a numeric type, as in
Java and C tradition. So you can multiply two of them together.
Product is analogous to sum, but for multiplication. It is actually not unique to StringOps, but is available on most collections. It doesn't make too much sense with Strings, but consider a list of Ints or a Set of Doubles.
scala> Seq(4,6,11).productres1: Int = 264
scala> 1.0 to 2.0 by 0.2 productres2: Double = 9.676799999999997
On Thu, Jan 5, 2012 at 11:04 PM, <sporter99@msn.com> wrote: