Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Many of the evaluable array ops (the functions, not the classes) support automatic type casting. For example you can do evaluable.add(1, 1.5) without problems. However, you can also do evaluable.add(True, 1) (evaluates to 2, int), and here implicit casting makes less sense. To prevent unforeseen casts, this PR disallows all implicit casting in evaluable array ops.
- Loading branch information