You can implement them in events with the function object. Here are the formulas:
qarp(a, b, c, t) = lerp(lerp(a,b,t), lerp(b,c,t), t)
cubic(a, b, c, d, t) = lerp(qarp(a,b,c,t), qarp(b,c,d,t), t)
cosp(a, b, t) = (a+b+(a-b)*cos(t*180))/2
For interpolation with any number of parameters wikipedia has the math here:http://en.wikipedia.org/wiki/B%C3%A9zier_curve#Generalization
Whiteclaws
They are for smooth transitions from one value to another. Cubic and qarp can be used to define a curved path or to do ease in/out effects.