1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/stdlib/math
3timeslazy acf2f13dcb Linter Cleanups (#294)
* sync with MontFerret/ferret

* fix --param handling

When params is converted to map it uses strings.Split,
which slices a string into all substrings separated by :.

* remove impossible conditions nil != nil

* delete ineffectual assignments

* replace '+= 1' with '++'

* remove useless comparison with nil

* merge variable declarations

* remove bool comparison

* fix imports

* fix imports

* delete unused file

* use copy instead of loop

* delete unused DummyInterface

* remove unnecassary break statements

* tidy modules
2019-05-03 17:10:34 -04:00
..
abs_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
abs.go New type system (#232) 2019-02-13 12:31:18 -05:00
acos_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
acos.go New type system (#232) 2019-02-13 12:31:18 -05:00
asin_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
asin.go New type system (#232) 2019-02-13 12:31:18 -05:00
atan2_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
atan2.go New type system (#232) 2019-02-13 12:31:18 -05:00
atan_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
atan.go New type system (#232) 2019-02-13 12:31:18 -05:00
average_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
average.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
ceil_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
ceil.go New type system (#232) 2019-02-13 12:31:18 -05:00
cos_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
cos.go New type system (#232) 2019-02-13 12:31:18 -05:00
degrees_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
degrees.go New type system (#232) 2019-02-13 12:31:18 -05:00
exp2_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
exp2.go New type system (#232) 2019-02-13 12:31:18 -05:00
exp_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
exp.go New type system (#232) 2019-02-13 12:31:18 -05:00
floor_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
floor.go New type system (#232) 2019-02-13 12:31:18 -05:00
lib.go New type system (#232) 2019-02-13 12:31:18 -05:00
log2_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
log2.go New type system (#232) 2019-02-13 12:31:18 -05:00
log10_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
log10.go New type system (#232) 2019-02-13 12:31:18 -05:00
log_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
log.go New type system (#232) 2019-02-13 12:31:18 -05:00
max_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
max.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
mean.go New type system (#232) 2019-02-13 12:31:18 -05:00
median_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
median.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
min_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
min.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
percentile_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
percentile.go Linter Cleanup (#276) 2019-03-29 10:48:51 -04:00
pi_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
pi.go Rewrite comments, closing #118 2018-10-14 13:06:27 -04:00
pow_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
pow.go New type system (#232) 2019-02-13 12:31:18 -05:00
radians_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
radians.go New type system (#232) 2019-02-13 12:31:18 -05:00
rand_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
rand.go Updated RAND function (#271) 2019-03-19 16:17:05 -04:00
range_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
range.go New type system (#232) 2019-02-13 12:31:18 -05:00
round_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
round.go New type system (#232) 2019-02-13 12:31:18 -05:00
sin_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
sin.go New type system (#232) 2019-02-13 12:31:18 -05:00
sqrt_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
sqrt.go New type system (#232) 2019-02-13 12:31:18 -05:00
stddev_population_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
stddev_population.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
stddev_sample_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
stddev_sample.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
sum_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
sum.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
tan_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
tan.go New type system (#232) 2019-02-13 12:31:18 -05:00
variance_population_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
variance_population.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
variance_sample_test.go Feature/#7 numeric functions (#116) 2018-10-13 21:07:28 -04:00
variance_sample.go Linter Cleanups (#294) 2019-05-03 17:10:34 -04:00
variance.go Linter Cleanup (#276) 2019-03-29 10:48:51 -04:00