Module: Pest::Function::Probability
Defined Under Namespace
Classes: BatchBuilder, Builder
Instance Method Summary
collapse
Instance Method Details
#batch_probability(*variables) ⇒ Object
Also known as:
batch_p
3
4
5
|
# File 'lib/pest/function/probability.rb', line 3
def batch_probability(*variables)
BatchBuilder.new(self, variables)
end
|
#probability(event = {}) ⇒ Object
Also known as:
p
8
9
10
|
# File 'lib/pest/function/probability.rb', line 8
def probability(event={})
Builder.new(self, event)
end
|