-
Notifications
You must be signed in to change notification settings - Fork 13
Foundations/argumentsの翻訳 #285
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
base: main
Are you sure you want to change the base?
Changes from 8 commits
5ec5cea
6c86a5e
bf4ddf7
1bd37fe
8ef4d31
c2a9e26
bb15c21
2a0082f
6f52f6d
8a66702
444a6ec
d1b4c67
c4aa95f
1994b3f
40ac405
357e9da
83e158d
b6427e1
11e3c28
0ab3efd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -9,13 +9,14 @@ use crate::foundations::{ | |||||
cast, func, repr, scope, ty, Array, Dict, FromValue, IntoValue, Repr, Str, Value, | ||||||
}; | ||||||
|
||||||
/// Captured arguments to a function. | ||||||
/// 関数に渡される引数。 | ||||||
/// | ||||||
/// # Argument Sinks | ||||||
/// Like built-in functions, custom functions can also take a variable number of | ||||||
/// arguments. You can specify an _argument sink_ which collects all excess | ||||||
/// arguments as `..sink`. The resulting `sink` value is of the `arguments` | ||||||
/// type. It exposes methods to access the positional and named arguments. | ||||||
/// # 引数シンク | ||||||
/// 組み込み関数と同様に、カスタム関数も可変個の引数を受け取れます。 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
/// 余分にある引数をすべてまとめて受け取る_引数シンク_(キッチンシンクのようにさまざまなも | ||||||
|
/// 余分にある引数をすべてまとめて受け取る_引数シンク_(キッチンシンクのようにさまざまなも | |
/// 余分にある引数をすべてまとめて受け取る _引数シンク_ (キッチンシンクのようにさまざまなも |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
完全に挙動を理解できていないですが、ここは前側の空白を入れると強調表示になります
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// 可能ならn個数の位置引数を取り出します。 | |
/// 可能ならn個の位置引数を取り出します。 |
Uh oh!
There was an error while loading. Please reload this page.