Skip to content

Commit 15f78f5

Browse files
committed
Merge branch 'devsdmf-fix-next-previous-urls'
2 parents b7db284 + a53b991 commit 15f78f5

File tree

162 files changed

+408
-129
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+408
-129
lines changed

ba/tutorials/tour/_posts/2017-02-13-abstract-types.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 22
1010
outof: 33
1111
language: ba
12+
13+
next-page: compound-types
14+
previous-page: inner-classes
1215
---
1316

1417
U Scali, klase su parameterizovane vrijednostima (parameteri konstruktora) i tipovima (ako su [generičke](generic-classes.html)).

ba/tutorials/tour/_posts/2017-02-13-annotations.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 31
1010
outof: 33
1111
language: ba
12+
13+
next-page: default-parameter-values
14+
previous-page: case-classes
1215
---
1316

1417
Anotacije pridružuju meta-informacije definicijama.

ba/tutorials/tour/_posts/2017-02-13-anonymous-function-syntax.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 6
1010
outof: 33
1111
language: ba
12+
13+
next-page: higher-order-functions
14+
previous-page: mixin-class-composition
1215
---
1316

1417
Scala omogućuje relativno lahku sintaksu za definisanje anonimnih funkcija. Sljedeći izraz kreira funkciju za sljedbenike cijelih brojeva:

ba/tutorials/tour/_posts/2017-02-13-automatic-closures.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 30
1010
outof: 33
1111
language: ba
12+
13+
next-page: case-classes
14+
previous-page: operators
1215
---
1316

1417
Scala dozvoljava da se argument (ili više njih) metode ne evaluira prije samog poziva metode.

ba/tutorials/tour/_posts/2017-02-13-case-classes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 30
1010
outof: 33
1111
language: ba
12+
13+
next-page: annotations
14+
previous-page: automatic-closures
1215
---
1316

1417
Scala podržava tzv. _case klase_.

ba/tutorials/tour/_posts/2017-02-13-classes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 3
1010
outof: 33
1111
language: ba
12+
13+
next-page: traits
14+
previous-page: unified-types
1215
---
1316

1417
Klase u Scali su statički šabloni koji mogu biti instancirani u više objekata tokom izvršavanja programa (runtime).

ba/tutorials/tour/_posts/2017-02-13-compound-types.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 23
1010
outof: 33
1111
language: ba
12+
13+
next-page: explicitly-typed-self-references
14+
previous-page: abstract-types
1215
---
1316

1417
Ponekad je potrebno izraziti da je tip objekta podtip nekoliko drugih tipova.

ba/tutorials/tour/_posts/2017-02-13-currying.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 9
1010
outof: 33
1111
language: ba
12+
13+
next-page: pattern-matching
14+
previous-page: nested-functions
1215
---
1316

1417
Metode mogu definisati više lista parametara.

ba/tutorials/tour/_posts/2017-02-13-default-parameter-values.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 32
1010
outof: 33
1111
language: ba
12+
13+
next-page: named-parameters
14+
previous-page: annotations
1215
---
1316

1417
Scala omogućuje davanje podrazumijevanih vrijednosti parametrima koje dozvoljavaju korisniku metode da izostavi te parametre.

ba/tutorials/tour/_posts/2017-02-13-explicitly-typed-self-references.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 24
1010
outof: 33
1111
language: ba
12+
13+
next-page: implicit-parameters
14+
previous-page: compound-types
1215
---
1316

1417
Kada se razvija proširiv softver ponekad je zgodno deklarisati tip vrijednosti `this` eksplicitno.

ba/tutorials/tour/_posts/2017-02-13-extractor-objects.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 15
1010
outof: 33
1111
language: ba
12+
13+
next-page: sequence-comprehensions
14+
previous-page: regular-expression-patterns
1215
---
1316

1417
U Scali, uzorci (patterns) mogu biti definisani nezavisno od case klasa.

ba/tutorials/tour/_posts/2017-02-13-generic-classes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 17
1010
outof: 33
1111
language: ba
12+
13+
next-page: variances
14+
previous-page: sequence-comprehensions
1215
---
1316

1417
Kao u Javi 5 ([JDK 1.5](http://java.sun.com/j2se/1.5/)), Scala ima ugrađenu podršku za klase parametrizovane tipovima.

ba/tutorials/tour/_posts/2017-02-13-higher-order-functions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 7
1010
outof: 33
1111
language: ba
12+
13+
next-page: nested-functions
14+
previous-page: anonymous-function-syntax
1215
---
1316

1417
Scala dozvoljava definisanje funkcija višeg reda.

ba/tutorials/tour/_posts/2017-02-13-implicit-conversions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 26
1010
outof: 33
1111
language: ba
12+
13+
next-page: polymorphic-methods
14+
previous-page: implicit-parameters
1215
---
1316

1417
Implicitna konverzija iz tipa `S` u tip `T` je definisana kao implicitna vrijednost koja ima tip `S => T` (funkcija),

ba/tutorials/tour/_posts/2017-02-13-implicit-parameters.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 25
1010
outof: 33
1111
language: ba
12+
13+
next-page: implicit-conversions
14+
previous-page: explicitly-typed-self-references
1215
---
1316

1417
Metoda s _implicitnim parametrima_ može biti primijenjena na argumente kao i normalna metoda.

ba/tutorials/tour/_posts/2017-02-13-inner-classes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 21
1010
outof: 33
1111
language: ba
12+
13+
next-page: abstract-types
14+
previous-page: lower-type-bounds
1215
---
1316

1417
U Scali je moguće da klase imaju druge klase kao članove.

ba/tutorials/tour/_posts/2017-02-13-local-type-inference.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 28
1010
outof: 33
1111
language: ba
12+
13+
next-page: operators
14+
previous-page: polymorphic-methods
1215
---
1316
Scala ima ugrađen mehanizam zaključivanja tipova koji dozvoljava programeru da izostavi određene anotacije tipova.
1417
Često nije potrebno specificirati tip varijable u Scali,

ba/tutorials/tour/_posts/2017-02-13-lower-type-bounds.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 20
1010
outof: 33
1111
language: ba
12+
13+
next-page: inner-classes
14+
previous-page: upper-type-bounds
1215
---
1316

1417
Dok [gornja granica tipa](upper-type-bounds.html) limitira tip na podtip nekog drugog tipa,

ba/tutorials/tour/_posts/2017-02-13-mixin-class-composition.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 5
1010
outof: 33
1111
language: ba
12+
13+
next-page: anonymous-function-syntax
14+
previous-page: traits
1215
---
1316

1417
Nasuprot jezicima koji podržavaju samo _jednostruko nasljeđivanje_, Scala ima generalniji pojam ponovne upotrebe klasa.

ba/tutorials/tour/_posts/2017-02-13-named-parameters.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ categories: tour
99
num: 33
1010
outof: 33
1111
language: ba
12+
13+
previous-page: default-parameter-values
1214
---
1315

1416
Kada se pozivaju metode i funkcije, možete koristiti imena varijabli eksplicitno pri pozivu:

ba/tutorials/tour/_posts/2017-02-13-nested-functions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 8
1010
outof: 33
1111
language: ba
12+
13+
next-page: currying
14+
previous-page: higher-order-functions
1215
---
1316

1417
U Scali je moguće ugnježdavati definicije funkcija.

ba/tutorials/tour/_posts/2017-02-13-operators.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 29
1010
outof: 33
1111
language: ba
12+
13+
next-page: automatic-closures
14+
previous-page: local-type-inference
1215
---
1316

1417
Bilo koja metoda koja prima samo jedan parametar može biti korištena kao *infiksni operator* u Scali.

ba/tutorials/tour/_posts/2017-02-13-pattern-matching.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ num: 11
1010

1111
outof: 33
1212
language: ba
13+
14+
next-page: singleton-objects
15+
previous-page: currying
1316
---
1417

1518
Scala ima ugrađen mehanizam generalnog podudaranja uzoraka.

ba/tutorials/tour/_posts/2017-02-13-polymorphic-methods.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ num: 27
1010

1111
outof: 33
1212
language: ba
13+
14+
next-page: local-type-inference
15+
previous-page: implicit-conversions
1316
---
1417

1518
Metode u Scali mogu biti parametrizovane i s vrijednostima i s tipovima.

ba/tutorials/tour/_posts/2017-02-13-regular-expression-patterns.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ num: 14
1010

1111
outof: 33
1212
language: ba
13+
14+
next-page: extractor-objects
15+
previous-page: singleton-objects
1316
---
1417

1518
## Desno-ignorišući uzorci sekvenci ##

ba/tutorials/tour/_posts/2017-02-13-sequence-comprehensions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 16
1010
outof: 33
1111
language: ba
12+
13+
next-page: generic-classes
14+
previous-page: extractor-objects
1215
---
1316

1417
Scala ima skraćenu notaciju za pisanje *komprehensija sekvenci*.

ba/tutorials/tour/_posts/2017-02-13-singleton-objects.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ num: 12
1010

1111
outof: 33
1212
language: ba
13+
14+
next-page: regular-expression-patterns
15+
previous-page: pattern-matching
1316
---
1417

1518
Metode i vrijednosti koje ne pripadaju individualnim instancama [klase](classes.html) pripadaju *singlton objektima*,

ba/tutorials/tour/_posts/2017-02-13-tour-of-scala.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ categories: tour
99
num: 1
1010
outof: 33
1111
language: ba
12+
13+
next-page: unified-types
1214
---
1315

1416
Scala je moderan programski jezik koji spaja više paradigmi,

ba/tutorials/tour/_posts/2017-02-13-traits.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 4
1010
outof: 33
1111
language: ba
12+
13+
next-page: mixin-class-composition
14+
previous-page: classes
1215
---
1316

1417
Slično Javinim interfejsima, trejtovi se koriste za definisanje tipova objekata navođenjem potpisa podržanih metoda.

ba/tutorials/tour/_posts/2017-02-13-unified-types.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 2
1010
outof: 33
1111
language: ba
12+
13+
next-page: classes
14+
previous-page: tour-of-scala
1215
---
1316

1417
Nasuprot Javi, sve vrijednosti u Scali su objekti (uključujući brojeve i funkcije).

ba/tutorials/tour/_posts/2017-02-13-upper-type-bounds.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 19
1010
outof: 33
1111
language: ba
12+
13+
next-page: lower-type-bounds
14+
previous-page: variances
1215
---
1316

1417
U Scali, [tipski parametri](generic-classes.html) i [apstraktni tipovi](abstract-types.html) mogu biti ograničeni granicom tipa.

ba/tutorials/tour/_posts/2017-02-13-variances.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 18
1010
outof: 33
1111
language: ba
12+
13+
next-page: upper-type-bounds
14+
previous-page: generic-classes
1215
---
1316

1417
Scala podržava anotacije varijanse tipskih parametara [generičkih klasa](generic-classes.html).

es/tutorials/tour/_posts/2017-02-13-abstract-types.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ categories: tour
99
num: 2
1010
outof: 33
1111
language: es
12+
13+
next-page: annotations
14+
previous-page: tour-of-scala
1215
---
1316

1417
En Scala, las cases son parametrizadas con valores (los parámetros de construcción) y con tipos (si las clases son [genéricas](generic-classes.html)). Por razones de consistencia, no es posible tener solo valores como miembros de objetos; tanto los tipos como los valores son miembros de objetos. Además, ambos tipos de miembros pueden ser concretos y abstractos.

es/tutorials/tour/_posts/2017-02-13-annotations.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ tutorial: scala-tour
88
categories: tour
99
num: 3
1010
language: es
11+
12+
next-page: classes
13+
previous-page: abstract-types
1114
---
1215

1316
Las anotaciones sirven para asociar meta-información con definiciones.

es/tutorials/tour/_posts/2017-02-13-anonymous-function-syntax.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ tutorial: scala-tour
88
categories: tour
99
num: 14
1010
language: es
11+
12+
next-page: currying
13+
previous-page: nested-functions
1114
---
1215

1316
Scala provee una sintaxis relativamente livana para definir funciones anónimas. La siguiente expresión crea una función incrementadora para números enteros:

es/tutorials/tour/_posts/2017-02-13-automatic-closures.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ tutorial: scala-tour
88
categories: tour
99
num: 16
1010
language: es
11+
12+
next-page: operators
13+
previous-page: currying
1114
---
1215

1316
Scala permite pasar funciones sin parámetros como parámetros de un método. Cuando un método así es invocado, los parámetros reales de la función enviada sin parámetros no son evaluados y una función "nularia" (de aridad cero, 0-aria, o sin parámetros) es pasada en su lugar. Esta función encapsula el comportamiento del parámetro correspondiente (comunmente conocido como "llamada por nombre").

es/tutorials/tour/_posts/2017-02-13-case-classes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ tutorial: scala-tour
88
categories: tour
99
num: 5
1010
language: es
11+
12+
next-page: compound-types
13+
previous-page: classes
1114
---
1215

1316
Scala da soporte a la noción de _clases caso_ (en inglés _case classes_, desde ahora _clases Case_). Las clases Case son clases regulares las cuales exportan sus parámetros constructores y a su vez proveen una descomposición recursiva de sí mismas a través de [reconocimiento de patrones](pattern-matching.html).

es/tutorials/tour/_posts/2017-02-13-classes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ tutorial: scala-tour
88
categories: tour
99
num: 4
1010
language: es
11+
12+
next-page: case-classes
13+
previous-page: annotations
1114
---
1215
En Scala, las clases son plantillas estáticas que pueden ser instanciadas por muchos objetos en tiempo de ejecución.
1316
Aquí se presenta una clase la cual define la clase `Point`:

es/tutorials/tour/_posts/2017-02-13-compound-types.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ tutorial: scala-tour
88
categories: tour
99
num: 6
1010
language: es
11+
12+
next-page: sequence-comprehensions
13+
previous-page: case-classes
1114
---
1215

1316
Algunas veces es necesario expresar que el tipo de un objeto es un subtipo de varios otros tipos. En Scala esto puede ser expresado con la ayuda de *tipos compuestos*, los cuales pueden entenderse como la intersección de otros tipos.

es/tutorials/tour/_posts/2017-02-13-currying.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ tutorial: scala-tour
88
categories: tour
99
num: 15
1010
language: es
11+
12+
next-page: automatic-closures
13+
previous-page: anonymous-function-syntax
1114
---
1215

1316
_Nota de traducción: Currying es una técnica de programación funcional nombrada en honor al matemático y lógico Haskell Curry. Es por eso que no se intentará hacer ninguna traducción sobre el término Currying. Entiendase este como una acción, técnica base de PF. Como una nota al paso, el lenguaje de programación Haskell debe su nombre a este eximio matemático._

0 commit comments

Comments
 (0)