class SyntaxTree::YARV::Legacy::OptNewArrayMin

### Summary

‘opt_newarray_min` is a specialization that occurs when the `min` method is called on an array literal. It pops the values of the array off the stack and pushes on the result.

### Usage

~~~ruby [a, b, c].min ~~~