docs.scala-lang.org

Website:https://docs.scala-lang.org
Upvotes received1
Downvotes received1
Karma:1 (upvotes-downvotes)



0 earned Badges

No badges were found



Definitions (132)

1

1 Thumbs up   1 Thumbs down

direct superclass


The class from which a class or trait is immediately derived, the nearest class above it in its inheritance hierarchy. If a class Parent
Source: docs.scala-lang.org

2

0 Thumbs up   0 Thumbs down

glossary from the definitive book on scala

Source: docs.scala-lang.org

3

0 Thumbs up   0 Thumbs down

algebraic data type


A type defined by providing several alternatives, each of which comes with its own constructor. It usually comes with a way to decompose the type through pattern matching. The concept is found in spec [..]
Source: docs.scala-lang.org

4

0 Thumbs up   0 Thumbs down

alternative


A branch of a match expression. It has the form “case
Source: docs.scala-lang.org

5

0 Thumbs up   0 Thumbs down

annotation


An annotation appears in source code and is attached to some part of the syntax. Annotations are computer processable, so you can use them to effectively add an extension to Scala.
Source: docs.scala-lang.org

6

0 Thumbs up   0 Thumbs down

anonymous class


An anonymous class is a synthetic subclass generated by the Scala compiler from a new expression in which the class or trait name is followed by curly braces. The curly braces contains the body of the [..]
Source: docs.scala-lang.org

7

0 Thumbs up   0 Thumbs down

anonymous function


Another name for function literal
Source: docs.scala-lang.org

8

0 Thumbs up   0 Thumbs down

apply


You can apply a method, function, or closure to arguments, which means you invoke it on those arguments.
Source: docs.scala-lang.org

9

0 Thumbs up   0 Thumbs down

argument


When a function is invoked, an argument is passed for each parameter of that function. The parameter is the variable that refers to the argument. The argument is the object passed at invocation time. [..]
Source: docs.scala-lang.org

10

0 Thumbs up   0 Thumbs down

assign


You can assign an object to a variable. Afterwards, the variable will refer to the object.
Source: docs.scala-lang.org


To view all 132 definitions, please sign in.