Skip to content
Snippets Groups Projects
Commit 2a5c32d4 authored by Christian Humer's avatar Christian Humer
Browse files

Remove useless limits.

parent 65a2f290
No related branches found
No related tags found
No related merge requests found
......@@ -840,7 +840,7 @@ public final class SeqFunctions {
}
// "by" missing
@Specialization(guards = {"oneNotMissing(alongWith, lengthOut)", "oneNotMissing(fromObj, toObj)"}, limit = "1")
@Specialization(guards = {"oneNotMissing(alongWith, lengthOut)", "oneNotMissing(fromObj, toObj)"})
protected RAbstractVector seqWithLength(Object fromObj, Object toObj, RMissing byObj, Object lengthOut, Object alongWith, Object dotdotdot,
@Cached("create()") AsRealNode asRealFrom,
@Cached("create()") AsRealNode asRealTo,
......@@ -893,7 +893,7 @@ public final class SeqFunctions {
}
// "to" missing
@Specialization(guards = {"oneNotMissing(alongWith, lengthOut)", "oneNotMissing(fromObj, byObj)"}, limit = "1")
@Specialization(guards = {"oneNotMissing(alongWith, lengthOut)", "oneNotMissing(fromObj, byObj)"})
protected RAbstractVector seqWithLength(Object fromObj, RMissing toObj, Object byObj, Object lengthOut, Object alongWith, Object dotdotdot,
@Cached("create()") AsRealNode asRealFrom,
@Cached("create()") AsRealNode asRealby,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment