Changed documentation

This commit is contained in:
Arthur Guiot
2020-06-10 17:27:51 -04:00
parent 008bba7116
commit 3e36f8186b
3 changed files with 52 additions and 18 deletions
+1
View File
@@ -94,3 +94,4 @@ Network Trash Folder
Temporary Items
.apdisk
.swiftpm/
Package.resolved
+50 -17
View File
@@ -19,12 +19,43 @@ custom_categories:
- pi
- e
- Constant
- name: Algebra
children:
- Expression
- Polynomial
- name: Tables
children:
- Tables
- TablesDataSource
- TablesDelegate
- CellValue
- name: Statistics
children:
- Statistics
- name: Generators
children:
- Collatz
- Fibonacci
- Sieve
- name: Visualisation & Geometry
children:
- Graph
- Point
- name: Matrix & Vectors
children:
- Matrix
- Vector
- name: Cryptography
children:
- RSA
- String
- Data
- name: Operations / Functions
children:
- abs(_:)
- ceil(_:)
- combinations(_:_:)
- combinationsWithRepititions(_:_:)
- combinationsWithRepetitions(_:_:)
- encodeMD5(digest:)
- floor(_:)
- gcd(_:_:)
@@ -42,15 +73,23 @@ custom_categories:
- pow(_:_:)
- pow(_:_:)
- steinGcd(_:_:)
- name: Statistics
- exp(_:)
- factorial(_:)
- gamma(_:)
- inverse(_:_:)
- leastFactor(_:)
- leastFactor(_:)
- ln(_:)
- ln(_:precision:)
- sum(_:)
- sum(_:)
- name: Array manipulation
children:
- Statistics
- name: Generators
- Array
- name: Errors
children:
- Collatz
- Fibonacci
- Sieve
- name: Algebra Parser
- EvaluationError
- name: Algebra - Advanced
children:
- Parser
- Lexer
@@ -58,19 +97,13 @@ custom_categories:
- Group
- Token
- Node
- CellAddressNode
- ExpressionNode
- ParenthesisNode
- ConstantNode
- SymbolNode
- StringNode
- OperatorNode
- FunctionNode
- NullNode
- name: Cryptography
children:
- String
- name: Tables
children:
- Tables
- name: Array manipulation
children:
- Array
+1 -1
View File
@@ -8,7 +8,7 @@
import Foundation
public extension Parser {
/// Initialize Parser with LaTeX
/// Initialize Parser with `$\LaTeX$
convenience init(latex: String) {
let math = Parser.LaTeX2Math(latex: latex)
self.init("=\(math)", type: .tables, tablesContext: Tables())