You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _layouts/frontpage.html
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ <h3>Seamless Java Interop</h3>
80
80
</div>
81
81
<divclass="span4 bullet-point">
82
82
<h3>Type Inference</h3>
83
-
<p>So the type system doesn't feel so static.</p>
83
+
<p>So the type system doesn’t feel so static.</p>
84
84
</div>
85
85
<divclass="span4 bullet-point">
86
86
<h3>Parallelism/Distribution</h3>
@@ -94,7 +94,7 @@ <h3>Traits</h3>
94
94
</div>
95
95
<divclass="span4 bullet-point">
96
96
<h3>Pattern Matching</h3>
97
-
<p>Think "switch" on steroids. Match against class hierarchies, sequences, and more.</p>
97
+
<p>Think “switch” on steroids. Match against class hierarchies, sequences, and more.</p>
98
98
</div>
99
99
<divclass="span4 bullet-point">
100
100
<h3>Higher-Order Functions</h3>
@@ -117,7 +117,7 @@ <h2><span>Scala in Action</span></h2>
117
117
<divclass="container">
118
118
<divclass="carousel-caption">
119
119
<h1>Concise and powerful. Higher-order functions on collections.</h1>
120
-
<pclass="lead">Invoke the higher-order method "partition", which takes a predicate (a function returning a Boolean) as its sole argument, using infix syntax. The two components of the result pair are assigned simultaneously to two new local variables using a tuple pattern. No need for clunky intermediate collections and for-loops.</p>
120
+
<pclass="lead">Invoke the higher-order method “partition”, which takes a predicate (a function returning a Boolean) as its sole argument, using infix syntax. The two components of the result pair are assigned simultaneously to two new local variables using a tuple pattern. No need for clunky intermediate collections and for-loops.</p>
<pclass="lead" style="float: left; width: 320px; margin-left: 20px;">Enable pattern matching on classes and singleton objects using the case modifier. Match against trees, extracting its fields using variables in a pattern like "Binary(e, l, r)".
130
+
<pclass="lead" style="float: left; width: 320px; margin-left: 20px;">Enable pattern matching on classes and singleton objects using the case modifier. Match against trees, extracting its fields using variables in a pattern like “Binary(e, l, r)”.
<h1style="margin-left: 20px">Type Inference, Class Parameters, and String Interpolation.</h1>
141
-
<pclass="lead" style="float: left; width: 320px; margin-left: 20px;">The type "List[Int]" of "l" is inferred automatically. The primary constructor of class "Person" assigns its arguments to public fields "name" and "age".
141
+
<pclass="lead" style="float: left; width: 320px; margin-left: 20px;">The type “List[Int]” of “l” is inferred automatically. The primary constructor of class “Person” assigns its arguments to public fields “name” and “age”.
0 commit comments