SkillAgentSearch skills...

MathParser

A Swift library to parse mathematical expressions into Decimal values

Install / Use

/learn @jrosen081/MathParser
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

MathParser

CI Status Version License Platform

What it is:

MathParser is a library written in swift that will allow a user to parse a String.

What you can do with it:

  • Addition
  • Subtraction
  • Multiplication
  • Division
  • Exponents
  • Overload the operators.

How to use:

Here is an example of how to use the library.

let expr = Parser.parse(string: "1 + 2") // Will return an expression that can be evaluated.
let exprValue = expr?.evaluate() // Evaluates the expression (will be 3 in this example)

To overload operators (this can be done if wanted):

Operators.addOp = ">"
let ans = Parser.parse(string: "1 > 2")?.evaluate() // This will evaluate to 3 with the new operator

Public methods:

  • Parser.parse
    • This returns an Optional Expression. This will return nil if the String is unparseable.
  • Expression.evaluate
    • This returns an Optional Decimal. This will only return nil if there is a division by 0.

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

MathParser is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'MathParser'

Author

jrosen081, jrosen081@gmail.com

License

MathParser is available under the MIT license. See the LICENSE file for more info.

View on GitHub
GitHub Stars4
CategoryDevelopment
Updated1y ago
Forks1

Languages

Swift

Security Score

75/100

Audited on May 31, 2024

No findings