Frederic G. MARAND

Results 5 comments of Frederic G. MARAND

One could say this is a feature, not a bug, so just add a function like this in your program: ```go func isNotTransitionError(err error) bool { var noTransitionError fsm.NoTransitionError return...

Additional caution may be needed: `NoTransitionError` can also happen in other situations, in which case the `NoTransitionError` will wrap another error. This can be checked like that: ```go func isNotError(err...

One consequence of this is that the example under `The power of =>` on that page, which is described as failing, actually succeeds, in the toolbox as well as in...

Related: #8801 mentioning quotas not being enforced.

@edenhill just stumbled on this 4 years later in another context, and it is still relevant. I updated the PR to apply to current `master`.