8000 Fix links to renamed page by Philippus · Pull Request #792 · scala/docs.scala-lang · GitHub
[go: up one dir, main page]

Skip to content

Fix links to renamed page #792

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorials/tour/_posts/2017-02-13-extractor-objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ discourse: true
tutorial: scala-tour
categories: tour
num: 16
next-page: sequence-comprehensions
next-page: for-comprehensions
previous-page: regular-expression-patterns
---

Expand Down
2 changes: 1 addition & 1 deletion tutorials/tour/_posts/2017-02-13-generic-classes.md
8000
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tutorial: scala-tour
categories: tour
num: 18
next-page: variances
previous-page: sequence-comprehensions
previous-page: for-comprehensions
assumed-knowledge: classes unified-types
---
Generic classes are classes which take a type as a parameter. They are particularly useful for collection classes.
Expand Down
2 changes: 1 addition & 1 deletion tutorials/tour/_posts/2017-02-13-tour-of-scala.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Scala is a pure object-oriented language in the sense that [every value is an ob
## Scala is functional ##
Scala is also a functional language in the sense that [every function is a value](unified-types.html). Scala provides a [lightweight syntax](anonymous-function-syntax.html) for defining anonymous functions, it supports [higher-order functions](higher-order-functions.html), it allows functions to be [nested](nested-functions.html), and supports [currying](currying.html). Scala's [case classes](case-classes.html) and its built-in support for [pattern matching](pattern-matching.html) model algebraic types used in many functional programming languages. [Singleton objects](singleton-objects.html) provide a convenient way to group functions that aren't members of a class.

Furthermore, Scala's notion of pattern matching naturally extends to the [processing of XML data](xml-processing.html) with the help of [right-ignoring sequence patterns](regular-expression-patterns.html), by way of general extension via [extractor objects](extractor-objects.html). In this context, [sequence comprehensions](sequence-comprehensions.html) are useful for formulating queries. These features make Scala ideal for developing applications like web services.
Furthermore, Scala's notion of pattern matching naturally extends to the [processing of XML data](xml-processing.html) with the help of [right-ignoring sequence patterns](regular-expression-patterns.html), by way of general extension via [extractor objects](extractor-objects.html). In this context, [for comprehensions](for-comprehensions.html) are useful for formulating queries. These features make Scala ideal for developing applications like web services.

## Scala is statically typed ##
Scala is equipped with an expressive type system that enforces statically that abstractions are used in a safe and coherent manner. In particular, the type system supports:
Expand Down
0