- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
max int?
Thu, 2010-06-10, 18:53
Dear Scalarazzi,
What's the 2.8 blessed way of obtaining max int?
Best wishes,
--greg
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
1219 NW 83rd St
Seattle, WA 98117
+1 206.650.3740
http://biosimilarity.blogspot.com
What's the 2.8 blessed way of obtaining max int?
Best wishes,
--greg
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
1219 NW 83rd St
Seattle, WA 98117
+1 206.650.3740
http://biosimilarity.blogspot.com
Thu, 2010-06-10, 22:27
#2
Re: max int?
Dear Seth,
Many thanks! i didn't spot that in the ScalaDoc from the nightlies.
Best wishes,
--greg
On Thu, Jun 10, 2010 at 10:53 AM, Seth Tisue <seth@tisue.net> wrote:
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
1219 NW 83rd St
Seattle, WA 98117
+1 206.650.3740
http://biosimilarity.blogspot.com
Many thanks! i didn't spot that in the ScalaDoc from the nightlies.
Best wishes,
--greg
On Thu, Jun 10, 2010 at 10:53 AM, Seth Tisue <seth@tisue.net> wrote:
>>>>> "Meredith" == Meredith Gregory <lgreg.meredith@gmail.com> writes:
Meredith> Dear Scalarazzi, What's the 2.8 blessed way of obtaining max
Meredith> int?
Int.MaxValue
--
Seth Tisue @ Northwestern University | http://tisue.net
lead developer, NetLogo: http://ccl.northwestern.edu/netlogo/
--
L.G. Meredith
Managing Partner
Biosimilarity LLC
1219 NW 83rd St
Seattle, WA 98117
+1 206.650.3740
http://biosimilarity.blogspot.com
Thu, 2010-06-10, 22:37
#3
Re: max int?
The AnyVal companion classes are are added synthetically by the compiler [1].
Beware that Double.MinValue != java.lang.Double.MIN_VALUE, but rather
-Double.MaxValue. Ditto for Float.
I wonder what needs to be done to get them into the ScalaDoc?
-jason
On Thu, Jun 10, 2010 at 11:17 PM, Meredith Gregory
wrote:
> Dear Seth,
> Many thanks! i didn't spot that in the ScalaDoc from the nightlies.
> Best wishes,
> --greg
Thu, 2010-06-10, 22:47
#4
Re: max int?
On Thu, Jun 10, 2010 at 11:32 PM, Jason Zaugg wrote:
> The AnyVal companion classes are are added synthetically by the compiler [1].
[1] https://lampsvn.epfl.ch/trac/scala/browser/scala/trunk/src/compiler/scal...
>>>>> "Meredith" == Meredith Gregory writes:
Meredith> Dear Scalarazzi, What's the 2.8 blessed way of obtaining max
Meredith> int?
Int.MaxValue