Skip to content

Commit 533d497

Browse files
committed
Drop references to Discourse comments
1 parent 5787e45 commit 533d497

File tree

153 files changed

+0
-544
lines changed

Some content is hidden

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

153 files changed

+0
-544
lines changed

_ja/tour/abstract-type-members.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,12 @@
22
layout: tour
33
title: 抽象型メンバー
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
96
num: 23
107
next-page: compound-types
118
previous-page: inner-classes
129
topics: abstract type members
1310
prerequisite-knowledge: variance, upper-type-bound
14-
1511
---
1612

1713
トレイトや抽象クラスのような抽象型は抽象型メンバーを持つことができます。

_ja/tour/annotations.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,10 @@
22
layout: tour
33
title: アノテーション
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
9-
106
num: 32
117
next-page: packages-and-imports
128
previous-page: by-name-parameters
13-
149
---
1510

1611
アノテーションはメタ情報と定義を関連づけます。例えば、メソッドの前のアノテーション`@deprecated`はメソッドが使われたらコンパイラに警告を出力させます。

_ja/tour/automatic-closures.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
layout: tour
33
title: 型依存クロージャの自動構築
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
96
---
107

_ja/tour/basics.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,10 @@
22
layout: tour
33
title: 基本
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
9-
106
num: 2
117
next-page: unified-types
128
previous-page: tour-of-scala
13-
149
---
1510

1611
このページでは、Scalaの基本を取り扱います。

_ja/tour/by-name-parameters.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,10 @@
22
layout: tour
33
title: 名前渡しパラメータ
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
9-
106
num: 31
117
next-page: annotations
128
previous-page: operators
13-
149
---
1510

1611
*名前渡しのパラメータ*は使用された時に評価されます。それらは*値渡しパラメータ*とは対照的です。名前渡しのパラメータを作るには、単純に`=>`を型の前につけます。

_ja/tour/case-classes.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,11 @@
22
layout: tour
33
title: ケースクラス
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
9-
106
num: 11
117
next-page: pattern-matching
128
previous-page: multiple-parameter-lists
139
prerequisite-knowledge: classes, basics, mutability
14-
1510
---
1611

1712
ケースクラスはこれから論じるいくつかの差異はあるものの普通のクラスと似ています。

_ja/tour/classes.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,12 @@
22
layout: tour
33
title: クラス
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
9-
106
num: 4
117
next-page: traits
128
previous-page: unified-types
139
topics: classes
1410
prerequisite-knowledge: no-return-keyword, type-declaration-syntax, string-interpolation, procedures
15-
1611
---
1712

1813
Scalaにおけるクラスはオブジェクトを作るための設計図です。

_ja/tour/compound-types.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,10 @@
22
layout: tour
33
title: 複合型
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
9-
106
num: 24
117
next-page: self-types
128
previous-page: abstract-type-members
13-
149
---
1510
ときどき、あるオブジェクトの型が、複数の他の型のサブタイプであると表現する必要が生じます。
1611
Scalaでは、これは*複合型*を用いて表現できます。複合型とはオブジェクトの型同士を重ねることです。

_ja/tour/default-parameter-values.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,11 @@
22
layout: tour
33
title: デフォルト引数
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
9-
106
num: 33
117
next-page: named-arguments
128
previous-page: annotations
139
prerequisite-knowledge: named-arguments, function syntax
14-
1510
---
1611

1712
Scalaはパラメータのデフォルト値を与えることができ、呼び出す側はこれらのパラメータを省略できます。

_ja/tour/extractor-objects.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,10 @@
22
layout: tour
33
title: 抽出子オブジェクト
44
language: ja
5-
6-
discourse: true
7-
85
partof: scala-tour
9-
106
num: 16
117
next-page: for-comprehensions
128
previous-page: regular-expression-patterns
13-
149
---
1510

1611
抽出子オブジェクトは`unapply`メソッドを持つオブジェクトです。

0 commit comments

Comments
 (0)