Create a new sequence sort
(R s)
| 257 | * Create a new sequence sort |
| 258 | **/ |
| 259 | public final <R extends Sort> SeqSort<R> mkSeqSort(R s) |
| 260 | { |
| 261 | return new SeqSort<>(this, Native.mkSeqSort(nCtx(), s.getNativeObject())); |
| 262 | } |
| 263 | |
| 264 | /** |
| 265 | * Create a new regular expression sort |
no test coverage detected