reciprocal calc function
.NET Test / .NET tests (push) Successful in 1m30s

This commit is contained in:
2026-09-15 01:25:57 +04:00
parent 1e14a72d1c
commit 210c2ebfcc
4 changed files with 219 additions and 2 deletions
+3 -2
View File
@@ -52,8 +52,9 @@ Follow `.editorconfig`, not incidental style in unfinished code.
- Use file-scoped namespaces, explicit types rather than `var`, and block-bodied
methods. Preserve the configured expression-bodied property/accessor preferences.
- Use `_camelCase` for non-public instance fields, including internal fields;
`s_camelCase` for non-public mutable static fields; PascalCase for constants
and static readonly fields. Do not rename internal fields to remove underscores.
`s_camelCase` for non-public mutable static fields; PascalCase for member constants
and static readonly fields. Method-local constants follow local-variable camelCase.
Do not rename internal fields to remove underscores.
- Preserve parentheses that make mathematical grouping readable. `IDE0047` is
intentionally disabled; do not re-enable it or remove grouping as style cleanup.
- Document public APIs and non-obvious numerical preconditions. Explain algorithms,