Re: [Math] "rebase" vs "merge" (Was: RNG refactoring)

2016-03-26 Thread HotFusionMan
Unlike a regular merge, rebase applies a branch's commits' changes onto the specified commit (which is typically identified by specifying a branch name), in the same order as they appear in the branch that is being rebased. The name of the command says that you are redefining the "base", in othe

[Math] "rebase" vs "merge" (Was: RNG refactoring)

2016-03-26 Thread Gilles
On Fri, 25 Mar 2016 11:56:26 -0400, Evan Ward wrote: I'm not sure if this is the problem, but a good rule of thumb is that if you have pushed a commit Did I? What I wanted is * publish code ("feature-MATH-1335") * publish code ("feature-MATH-1158") that requires the new code present in "

Re: Jexl Array

2016-03-26 Thread henrib
Hi; As mentioned in https://commons.apache.org/proper/commons-jexl/reference/syntax.html#Operators , the 'in' aka '~=' operator works with array (and collections). The syntax is thus: x ~= [10, 20, 30] Cheers -- View this message in context: http://apache-commons.680414.n4.nabble.com/Jexl-Arr