Proyecto

General

Perfil

Getting Started » Histórico » Versión 15

Federico Vera, 2018-07-18 08:24

1 15 Federico Vera
 [![Codacy Badge](https://api.codacy.com/project/badge/Grade/ad8fa724765e4d7ba58400d070c5c868)](https://www.codacy.com/app/RiddlerArgentina/exp4j-riddler?utm_source=gitlab.com&utm_medium=referral&utm_content=riddler_arg/exp4j&utm_campaign=Badge_Grade) ![](https://gitlab.com/riddler_arg/exp4j/badges/master/build.svg) ![coverage](https://gitlab.com/riddler_arg/exp4j/badges/master/coverage.svg)
2 12 Federico Vera
3 2 Federico Vera
# Getting Started
4
5 1 Federico Vera
This wiki contains examples for using this version of `exp4j`, most of them will work on the original `exp4j`, but for guaranteed compatibility the original `exp4j` has an amazing [example page](https://www.objecthunter.net/exp4j/#Usage).
6
7 4 Federico Vera
If you're a regular `exp4j` user first checkout [[Differences with the original exp4j]].
8 1 Federico Vera
9
If you are new to `exp4j`, then checkout:
10
* [[Built in Functions]]
11
* [[Built in Operators]]
12
* [[Extra Functions and Operators]]
13
* [[First Steps]]
14
* [[Advanced Examples]]
15
* [[Warnings]]
16 5 Federico Vera
* [JavaDocs](https://docs.riddler.com.ar/exp4j/apidocs/)
17
* [JaCoCo](https://docs.riddler.com.ar/exp4j/jacoco/)
18 1 Federico Vera
19 11 Federico Vera
## Building
20
21
~~~
22
git clone [email protected]:riddler_arg/exp4j.git
23
cd exp4j
24
ant build-all
25
~~~
26
27
## Building without extras
28
In case size is reaaaaly important to you (current `exp4j` weighs `~72KB`), you can remove all the extra functions, and the size will be reduced to `~52KB`.
29
30
~~~
31
git clone [email protected]:riddler_arg/exp4j.git
32
cd exp4j
33
rm -rf src/main/java/net/objecthunter/exp4j/extras
34
ant build-all
35
~~~
36
37 7 Federico Vera
## Extras
38 6 Federico Vera
39 8 Federico Vera
- [API Documentation](https://docs.riddler.com.ar/exp4j/apidocs/)
40
- [Code Coverage](https://docs.riddler.com.ar/exp4j/jacoco/)
41 6 Federico Vera
42 1 Federico Vera
***
43 10 Federico Vera
## Contributing
44
- [Help Transalte!](https://poeditor.com/join/project/DjiMBPIw1u). Read the official [announcement](https://redmine.riddler.com.ar/news/8).
45
46
## Downloads
47
- [Download `exp4j-LATEST`](https://redmine.riddler.com.ar/projects/exp4j/files)
Volver al inicio