Skip to content

Remove redirect_from from ja tour #1422

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 1 commit into from
Jul 8, 2019
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: 0 additions & 2 deletions _ja/tour/abstract-type-members.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ previous-page: inner-classes
topics: abstract type members
prerequisite-knowledge: variance, upper-type-bound

redirect_from: "/tutorials/tour/abstract-types.html"
redirect_from: "/tour/abstract-types.html"
---

トレイトや抽象クラスのような抽象型は抽象型メンバーを持つことができます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/annotations.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 32
next-page: default-parameter-values
previous-page: by-name-parameters

redirect_from: "/tutorials/tour/annotations.html"
---

アノテーションはメタ情報と定義を関連づけます。例えば、メソッドの前のアノテーション`@deprecated`はメソッドが使われたらコンパイラに警告を出力させます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 2
next-page: unified-types
previous-page: tour-of-scala

redirect_from: "/tutorials/tour/basics.html"
---

このページでは、Scalaの基本を取り扱います。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/by-name-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 31
next-page: annotations
previous-page: operators

redirect_from: "/tutorials/tour/by-name-parameters.html"
---

*名前渡しのパラメータ*は使用された時に評価されます。それらは*値渡しパラメータ*とは対照的です。名前渡しのパラメータを作るには、単純に`=>`を型の前につけます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/case-classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: pattern-matching
previous-page: multiple-parameter-lists
prerequisite-knowledge: classes, basics, mutability

redirect_from: "/tutorials/tour/case-classes.html"
---

ケースクラスはこれから論じるいくつかの差異はあるものの普通のクラスと似ています。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ previous-page: unified-types
topics: classes
prerequisite-knowledge: no-return-keyword, type-declaration-syntax, string-interpolation, procedures

redirect_from: "/tutorials/tour/classes.html"
---

Scalaにおけるクラスはオブジェクトを作るための設計図です。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/compound-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 24
next-page: self-types
previous-page: abstract-type-members

redirect_from: "/tutorials/tour/compound-types.html"
---
ときどき、あるオブジェクトの型が、複数の他の型のサブタイプであると表現する必要が生じます。
Scalaでは、これは*複合型*を用いて表現できます。複合型とはオブジェクトの型同士を重ねることです。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/default-parameter-values.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: named-arguments
previous-page: annotations
prerequisite-knowledge: named-arguments, function syntax

redirect_from: "/tutorials/tour/default-parameter-values.html"
---

Scalaはパラメータのデフォルト値を与えることができ、呼び出す側はこれらのパラメータを省略できます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/extractor-objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 16
next-page: for-comprehensions
previous-page: regular-expression-patterns

redirect_from: "/tutorials/tour/extractor-objects.html"
---

抽出子オブジェクトは`unapply`メソッドを持つオブジェクトです。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/for-comprehensions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 17
next-page: generic-classes
previous-page: extractor-objects

redirect_from: "/tutorials/tour/for-comprehensions.html"
---

Scalaは*シーケンス内包表記*を表現するための軽量な記法を提供します。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/generic-classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: variances
previous-page: for-comprehensions
assumed-knowledge: classes unified-types

redirect_from: "/tutorials/tour/generic-classes.html"
---
ジェネリッククラスはパラメータとして型を1つ受け取るクラスです。それらはコレクションクラスで特に役立ちます。

Expand Down
1 change: 0 additions & 1 deletion _ja/tour/higher-order-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 8
next-page: nested-functions
previous-page: mixin-class-composition

redirect_from: "/tutorials/tour/higher-order-functions.html"
---

高階関数は他の関数をパラメーターとして受け取る、もしくは結果として関数を返します。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/implicit-conversions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 27
next-page: polymorphic-methods
previous-page: implicit-parameters

redirect_from: "/tutorials/tour/implicit-conversions.html"
---

型`S`から型`T`への暗黙の変換は`S => T`という型のimplicit値や、その型に一致するimplicitメソッドで定義されます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/implicit-parameters.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 26
next-page: implicit-conversions
previous-page: self-types

redirect_from: "/tutorials/tour/implicit-parameters.html"
---

メソッドは _暗黙の_ パラメータのリストを持つことができ、パラメータリストの先頭には _implicit_ キーワードで印をつけます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/inner-classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 22
next-page: abstract-type-members
previous-page: lower-type-bounds

redirect_from: "/tutorials/tour/inner-classes.html"
---

Scalaではクラスが他のクラスをメンバーとして保持することが可能です。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/lower-type-bounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: inner-classes
previous-page: upper-type-bounds
prerequisite-knowledge: upper-type-bounds, generics, variance

redirect_from: "/tutorials/tour/lower-type-bounds.html"
---

[上限型境界](upper-type-bounds.html) は型を別の型のサブタイプに制限しますが、*下限型境界*は型が別の型のスーパータイプであることを宣言します。表現`B >: A`はパラメータ`B`または抽象型`B`が型`A`のスーパータイプであることを表します。ほとんどのケースで`A`はそのクラスの型パラメータであり、`B`はメソッドの型パラメータになります。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/mixin-class-composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: higher-order-functions
previous-page: tuples
prerequisite-knowledge: inheritance, traits, abstract-classes, unified-types

redirect_from: "/tutorials/tour/mixin-class-composition.html"
---
ミックスインはクラスを構成するのに使われるトレイトです。

Expand Down
1 change: 0 additions & 1 deletion _ja/tour/multiple-parameter-lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 10
next-page: case-classes
previous-page: nested-functions

redirect_from: "/tutorials/tour/multiple-parameter-lists.html"
---

メソッドは複数のパラメータリストを持てます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/named-arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: packages-and-imports
previous-page: default-parameter-values
prerequisite-knowledge: function-syntax

redirect_from: "/tutorials/tour/named-arguments.html"
---

メソッドを呼ぶ時、以下のように引数にパラメータ名でラベル付が可能です。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/nested-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 9
next-page: multiple-parameter-lists
previous-page: higher-order-functions

redirect_from: "/tutorials/tour/nested-functions.html"
---

Scalaではメソッドの定義をネストする(_訳注:入れ子にする_)ことができます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: by-name-parameters
previous-page: type-inference
prerequisite-knowledge: case-classes

redirect_from: "/tutorials/tour/operators.html"
---
Scalaでは演算子はメソッドです。パラメータを1つだけ持つメソッドであれば*中置演算子*として使えます。例えば、`+`はドット記法で呼び出せます。

Expand Down
1 change: 0 additions & 1 deletion _ja/tour/pattern-matching.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ next-page: singleton-objects
previous-page: case-classes
prerequisite-knowledge: case-classes, string-interpolation, subtyping

redirect_from: "/tutorials/tour/pattern-matching.html"
---

パターンマッチングは値をパターンに照合するための仕組みです。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/polymorphic-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ next-page: type-inference
previous-page: implicit-conversions
prerequisite-knowledge: unified-types

redirect_from: "/tutorials/tour/polymorphic-methods.html"
---

Scalaのメソッドは値と同様に型によってパラメータ化することができます。構文はジェネリッククラスの構文と似ています。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/regular-expression-patterns.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ num: 15
next-page: extractor-objects
previous-page: singleton-objects

redirect_from: "/tutorials/tour/regular-expression-patterns.html"
---
正規表現はデータの中からパターン(またはその欠如)を探すために使うことができる文字列です。
どんな文字列も`.r`メソッドを使うことで、正規表現に変換できます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/self-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ previous-page: compound-types
topics: self-types
prerequisite-knowledge: nested-classes, mixin-class-composition

redirect_from: "/tutorials/tour/self-types.html"
---
自分型は、直接継承していなくてもトレイトが他のトレイトにミックスインされていることを宣言する方法です。
これにより依存先のメンバーをimportなしで利用できます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/singleton-objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 13

next-page: regular-expression-patterns
previous-page: pattern-matching
redirect_from: "/tutorials/tour/singleton-objects.html"
prerequisite-knowledge: classes, methods, private-methods, packages, option
---
オブジェクトは丁度1つのインスタンスを持つクラスです。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/tour-of-scala.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 1

next-page: basics

redirect_from: "/tutorials/tour/tour-of-scala.html"
---

## ようこそツアーへ
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/traits.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ previous-page: classes
topics: traits
prerequisite-knowledge: expressions, classes, generics, objects, companion-objects

redirect_from: "/tutorials/tour/traits.html"
---

トレイトはクラス間でインターフェースとフィールドを共有するために使います。それらはJava 8のインターフェースと似ています。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/tuples.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: mixin-class-composition
previous-page: traits
topics: tuples

redirect_from: "/tutorials/tour/tuples.html"
---

Scalaではタプルは決まった数の要素を含む値であり、各要素はそれぞれの型を持ちます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/unified-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ next-page: classes
previous-page: basics
prerequisite-knowledge: classes, basics

redirect_from: "/tutorials/tour/unified-types.html"
---
Scalaでは数値や関数を含め、全ての値は型を持ちます。
以下の図は型階層の一部を説明しています。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/upper-type-bounds.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 20
next-page: lower-type-bounds
previous-page: variances

redirect_from: "/tutorials/tour/upper-type-bounds.html"
---

Scalaでは [型パラメータ](generic-classes.html)と[抽象型メンバー](abstract-type-members.html) は型境界による制約をかけることができます。
Expand Down
1 change: 0 additions & 1 deletion _ja/tour/variances.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ num: 19
next-page: upper-type-bounds
previous-page: generic-classes

redirect_from: "/tutorials/tour/variances.html"
---

変位指定は複合型の間の継承関係とそれらの型パラメータ間の継承関係の相関です。
Expand Down