-
Notifications
You must be signed in to change notification settings - Fork 9
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
translate completely #12
base: master
Are you sure you want to change the base?
Conversation
建議 commit 不要寫 translate completely,可以寫 translate essentials |
docs/src/base/Essentials.md
Outdated
以下將按照函式的使用時機為各別主題,列出標準函式庫中的函式: | ||
|
||
附註: | ||
* 除了內置模組(例如:`Pkg`,`Collections`,`Test`和`Profile`)中的函式之外,此處列載的所有函式都可直接在程式中使用。 |
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.
* 除了內置模組(例如:`Pkg`,`Collections`,`Test`和`Profile`)中的函式之外,此處列載的所有函式都可直接在程式中使用。 | |
* 除了內建模組(例如:`Pkg`,`Collections`,`Test`和`Profile`)中的函式之外,此處列載的所有函式都可直接在程式中使用。 |
docs/src/base/Essentials.md
Outdated
|
||
附註: | ||
* 除了內置模組(例如:`Pkg`,`Collections`,`Test`和`Profile`)中的函式之外,此處列載的所有函式都可直接在程式中使用。 | ||
* 若要使用內置模組之函式,需使用 `import Module` 來匯入模組,並且使用 `Module.fn(x)` 來呼叫該模組中的函式。 |
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.
* 若要使用內置模組之函式,需使用 `import Module` 來匯入模組,並且使用 `Module.fn(x)` 來呼叫該模組中的函式。 | |
* 若要使用內建模組之函式,需使用 `import Module` 來匯入模組,並且使用 `Module.fn(x)` 來呼叫該模組中的函式。 |
docs/src/base/Essentials.md
Outdated
附註: | ||
* 除了內置模組(例如:`Pkg`,`Collections`,`Test`和`Profile`)中的函式之外,此處列載的所有函式都可直接在程式中使用。 | ||
* 若要使用內置模組之函式,需使用 `import Module` 來匯入模組,並且使用 `Module.fn(x)` 來呼叫該模組中的函式。 | ||
* 又或者,可藉由使用 `using Module`,將會匯入所有 `Module` 中的函式到當前的命名空間(`namespace`)。 |
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.
* 又或者,可藉由使用 `using Module`,將會匯入所有 `Module` 中的函式到當前的命名空間(`namespace`)。 | |
* 又或者,可藉由使用 `using Module`,將會匯入所有 `Module` 中的函式到當前的命名空間。 |
* 又或者,可藉由使用 `using Module`,將會匯入所有 `Module` 中的函式到當前的命名空間(`namespace`)。 | ||
* 依據慣例,部分函式命名以感嘆號(`!`)做結尾會變更它們的參數。一些函數保有變更的(例如:`sort!`),也有未變更的(例如:`sort`)版本。 | ||
|
||
## 隨時可使用之函式 |
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.
這個翻譯覺得不適合,不過我目前也想不到其他翻譯。
docs/src/base/Essentials.md
Outdated
ans | ||
``` | ||
|
||
## 物件(Objects) |
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.
大家熟悉的中文翻譯就不需要再加上英文附註。
hmm 有原文可以參考嗎? |
是翻譯哪個版本的文件? |
呼叫一下 @Wiatrx |
@iblis17 @yuehhua |
晚回沒差啦,我個人忙的時候也常常隔好幾天回。 @yuehhua hmm 所以你們 hackmd 中的是哪個版本啊 |
那時候應該是 v0.6,我是希望可以逐步換成新的版本。 |
要不直接換了吧? |
docs/src/base/Essentials.md
Outdated
Base.parse(::Any) | ||
``` | ||
|
||
## 可為 Null 的型別(Nullables) |
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.
這個不必翻譯。
docs/src/base/Essentials.md
Outdated
Base.AsyncCondition(::Function) | ||
``` | ||
|
||
## 映射(Reflection) |
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.
一般是都翻成反射
docs/src/base/Essentials.md
Outdated
@@ -0,0 +1,285 @@ | |||
|
|||
# 基本(Essentials) |
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.
建議「基本功能」
docs/src/base/Essentials.md
Outdated
Base.@functionloc | ||
``` | ||
|
||
## 內部核心(Internals) |
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.
建議「內部功能」
不好意思, |
版本問題,目前的 docs 是舊的 v0.6,不過測試的時候是跑 v0.7 以上。 |
No description provided.