Skip to content

[doc-core:math] Documentation for core:math package. (partials) #4961

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

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
78669f4
initial doc for math. Add doc for `Float_class` enum and `sqrt` proce…
kelreeeeey Mar 23, 2025
ba51224
add example for `math.sqrt`
kelreeeeey Mar 23, 2025
d15d6b5
[doc-core:math] added input output in `math.sqrt` procedure group
kelreeeeey Mar 23, 2025
17ffcbd
[doc-core:math] added doc for `math.sin`, `math.cos`, and `math.tan` …
kelreeeeey Mar 23, 2025
449e8bf
Merge branch 'odin-lang:master' into master
kelreeeeey Mar 23, 2025
ab4270e
[doc-core:math] added doc for `math.to_radians` and `math.to_degrees`…
kelreeeeey Mar 23, 2025
9d4ee04
[doc-core:math] fix typo in `Float_Class`
kelreeeeey Mar 24, 2025
4a21de5
[doc-core:math] added more example to `math.sqrt` and change their st…
kelreeeeey Mar 24, 2025
0c50e4d
Merge branch 'odin-lang:master' into master
kelreeeeey Mar 24, 2025
c4e93f0
[doc-core:math] update `doc.odin` explained procedure groups accepted…
kelreeeeey Mar 24, 2025
7ed7800
Merge branch 'master' of https://github.com/kelreeeeey/Odin
kelreeeeey Mar 24, 2025
70a37c5
[doc-core:math] update `math.to_degrees`, added more examples for spe…
kelreeeeey Mar 24, 2025
177ad62
[doc-core:math] update `math.to_radians`, added more examples for spe…
kelreeeeey Mar 24, 2025
4af9e1e
[doc-core:math] update `math.tan`, added more examples for special cases
kelreeeeey Mar 24, 2025
ea4fe8c
[doc-core:math] update `math.cos`, added more examples for special cases
kelreeeeey Mar 24, 2025
cf3b50a
[doc-core:math] update `math.sin`, added more examples for special cases
kelreeeeey Mar 24, 2025
b7ad99c
[doc-core:math] fixed multiline comment
kelreeeeey Mar 24, 2025
1edeace
[doc-core:math] fixed multiline comment
kelreeeeey Mar 24, 2025
fc453bf
Merge branch 'odin-lang:master' into master
kelreeeeey Mar 25, 2025
e54a541
[doc-core:math] added doc for `math.asin` proc and update doc.math
kelreeeeey Mar 25, 2025
b9ce613
[doc-core:math] fix typo in doc `math.asin`
kelreeeeey Mar 25, 2025
293e89a
[doc-core:math] remove unnecesary lines in doc `math.asin`
kelreeeeey Mar 25, 2025
884cef0
[doc-core:math] added doc for `math.acos`
kelreeeeey Mar 25, 2025
c6bf715
[doc-core:math] added doc for `math.atan`
kelreeeeey Mar 25, 2025
dac5931
Merge branch 'odin-lang:master' into master
kelreeeeey Mar 28, 2025
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: 9 additions & 0 deletions core/math/doc.odin
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
The `math` package implements various procedures for dealing with mathematical
functions and objects.

Most of procudures of `core:math` package
only accept float types (e.g. f32, f64, f64be, etc.).

*/
package math
Loading