aboutsummaryrefslogtreecommitdiff
path: root/agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java
diff options
context:
space:
mode:
authorFabian Meumertzheim <meumertzheim@code-intelligence.com>2021-10-21 10:17:38 +0200
committerFabian Meumertzheim <fabian@meumertzhe.im>2021-10-21 15:49:56 +0200
commita56cf70a429708a2bcce14fc978481b04dd330fd (patch)
tree51675f51076a4d7e6e8f25ff7736215f0e123825 /agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java
parentd4a1ce3f2e227bc30bcd2d97b623c193197e293e (diff)
downloadjazzer-api-a56cf70a429708a2bcce14fc978481b04dd330fd.tar.gz
Add ConsumerN, FunctionN and autofuzz methods up to N=5
Diffstat (limited to 'agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java')
-rw-r--r--agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java20
1 files changed, 20 insertions, 0 deletions
diff --git a/agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java b/agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java
new file mode 100644
index 00000000..1dc00347
--- /dev/null
+++ b/agent/src/main/java/com/code_intelligence/jazzer/autofuzz/Function5.java
@@ -0,0 +1,20 @@
+// Copyright 2021 Code Intelligence GmbH
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package com.code_intelligence.jazzer.autofuzz;
+
+@FunctionalInterface
+public interface Function5<T1, T2, T3, T4, T5, R> {
+ R apply(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5);
+}