Skip to content

Remove toc in macros guide, fix numbering #300

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 3 commits into from
Feb 14, 2014
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
9 changes: 3 additions & 6 deletions ja/overviews/collections/trait-iterable.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,11 @@ language: ja
| `xs grouped size` |このコレクション内の要素を固定サイズの「かたまり」にして返すイテレータ。|
| `xs sliding size` |このコレクション内の要素を固定サイズの「窓」をスライドさせて返すイテレータ。|
| **サブコレクション取得演算:** | |
| `xs takeRight n` |`xs` の最後の `n` 個の要素から成るコレクション
(順序が定義されていない場合は、任意の `n` 個の要素から成るコレクション)。|
| `xs dropRight n` |コレクションから `xs` `takeRight` `n`
を除いた残りの部分。|
| `xs takeRight n` |`xs` の最後の `n` 個の要素から成るコレクション (順序が定義されていない場合は、任意の `n` 個の要素から成るコレクション)。|
| `xs dropRight n` |コレクションから `xs` `takeRight` `n` を除いた残りの部分。|
| **zip 演算:** | |
| `xs zip ys` |`xs` と `ys` のそれぞれから対応する要素をペアにした `Iterable`。|
| `xs zipAll (ys, x, y)` |`xs` と `ys` のそれぞれから対応する要素をペアにした
`Iterable` で、もし片方が短い場合は `x` か `y` を使って長いほうに合わせる。|
| `xs zipAll (ys, x, y)` |`xs` と `ys` のそれぞれから対応する要素をペアにした `Iterable` で、もし片方が短い場合は `x` か `y` を使って長いほうに合わせる。|
| `xs.zipWithIndex` |`xs`内の要素とその添字をペアにした `Iterable`。|
| **比較演算:**    | |
| `xs sameElements ys` |`xs` と `ys` が同じ要素を同じ順序で格納しているかを調べる。|
Expand Down
4 changes: 2 additions & 2 deletions ja/overviews/macros/annotations.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ language: ja
disqus: true

partof: macros
num: 7
outof: 9
num: 6
outof: 8
title: マクロアノテーション
---
<span class="label important" style="float: right;">MACRO PARADISE</span>
Expand Down
3 changes: 1 addition & 2 deletions ja/overviews/macros/bundles.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ language: ja
disqus: true

partof: macros
num: 4
outof: 9
num: 3
title: マクロバンドル
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>
Expand Down
3 changes: 1 addition & 2 deletions ja/overviews/macros/implicits.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ language: ja
disqus: true

partof: macros
num: 5
outof: 9
num: 4
title: implicit マクロ
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>
Expand Down
3 changes: 1 addition & 2 deletions ja/overviews/macros/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ language: ja
disqus: true

partof: macros
num: 3
outof: 9
num: 2
title: def マクロ
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>
Expand Down
3 changes: 1 addition & 2 deletions ja/overviews/macros/paradise.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ language: ja
disqus: true

partof: macros
num: 8
outof: 9
num: 7
title: マクロパラダイス
---
<span class="label success" style="float: right;">NEW</span>
Expand Down
3 changes: 1 addition & 2 deletions ja/overviews/macros/quasiquotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ language: ja
disqus: true

partof: macros
num: 6
outof: 9
num: 5
title: 準クォート
---
<a href="/ja/overviews/macros/paradise.html"><span class="label important" style="float: right;">MACRO PARADISE</span></a>
Expand Down
3 changes: 1 addition & 2 deletions ja/overviews/macros/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ language: ja
disqus: true

partof: macros
num: 9
outof: 9
num: 8
title: ロードマップ
---

Expand Down
21 changes: 0 additions & 21 deletions ja/overviews/macros/toc.md

This file was deleted.

3 changes: 1 addition & 2 deletions ja/overviews/macros/usecases.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ language: ja
disqus: true

partof: macros
num: 2
outof: 9
num: 1
title: ユースケース
---

Expand Down
4 changes: 2 additions & 2 deletions overviews/macros/annotations.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ title: Macro Annotations
disqus: true

partof: macros
num: 9
outof: 11
num: 8
outof: 10
languages: [ja]
---
<span class="label important" style="float: right;">MACRO PARADISE</span>
Expand Down
3 changes: 1 addition & 2 deletions overviews/macros/blackbox-whitebox.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Blackbox Vs Whitebox
disqus: true

partof: macros
num: 3
outof: 11
num: 2
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>

Expand Down
3 changes: 1 addition & 2 deletions overviews/macros/bundles.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Macro Bundles
disqus: true

partof: macros
num: 5
outof: 11
num: 4
languages: [ja]
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>
Expand Down
3 changes: 1 addition & 2 deletions overviews/macros/implicits.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Implicit Macros
disqus: true

partof: macros
num: 6
outof: 11
num: 5
languages: [ja]
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>
Expand Down
3 changes: 1 addition & 2 deletions overviews/macros/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Def Macros
disqus: true

partof: macros
num: 4
outof: 11
num: 3
languages: [ja]
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>
Expand Down
3 changes: 1 addition & 2 deletions overviews/macros/paradise.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Macro Paradise
disqus: true

partof: macros
num: 10
outof: 11
num: 9
languages: [ja]
---
<span class="label success" style="float: right;">NEW</span>
Expand Down
3 changes: 1 addition & 2 deletions overviews/macros/quasiquotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Quasiquotes
disqus: true

partof: macros
num: 8
outof: 11
num: 7
languages: [ja]
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>
Expand Down
3 changes: 1 addition & 2 deletions overviews/macros/roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Roadmap
disqus: true

partof: macros
num: 11
outof: 11
num: 10
languages: [ja]
---

Expand Down
22 changes: 0 additions & 22 deletions overviews/macros/toc.md

This file was deleted.

3 changes: 1 addition & 2 deletions overviews/macros/typeproviders.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Type Providers
disqus: true

partof: macros
num: 7
outof: 11
num: 6
languages: [ja]
---
<span class="label warning" style="float: right;">EXPERIMENTAL</span>
Expand Down
3 changes: 1 addition & 2 deletions overviews/macros/usecases.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ title: Use Cases
disqus: true

partof: macros
num: 2
outof: 11
num: 1
languages: [ja]
---

Expand Down