Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/// Auto-generated file. DO NOT EDIT!packagekotlin.jvm.functions/** A function that takes 0 arguments. */publicinterfaceFunction0 : Function {
/** Invokes the function. */publicoperatorfuninvoke(): R
}
/** A function that takes 1 argument. */publicinterfaceFunction1 : Function {
/** Invokes the function with the specified argument. */publicoperatorfuninvoke(p1: P1): R
}
/** A function that takes 2 arguments. */publicinterfaceFunction2 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2): R
}
/** A function that takes 3 arguments. */publicinterfaceFunction3 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3): R
}
/** A function that takes 4 arguments. */publicinterfaceFunction4 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4): R
}
/** A function that takes 5 arguments. */publicinterfaceFunction5 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5): R
}
/** A function that takes 6 arguments. */publicinterfaceFunction6 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6): R
}
/** A function that takes 7 arguments. */publicinterfaceFunction7 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7): R
}
/** A function that takes 8 arguments. */publicinterfaceFunction8 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8): R
}
/** A function that takes 9 arguments. */publicinterfaceFunction9 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9): R
}
/** A function that takes 10 arguments. */publicinterfaceFunction10 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10): R
}
/** A function that takes 11 arguments. */publicinterfaceFunction11 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11): R
}
/** A function that takes 12 arguments. */publicinterfaceFunction12 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12): R
}
/** A function that takes 13 arguments. */publicinterfaceFunction13 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13): R
}
/** A function that takes 14 arguments. */publicinterfaceFunction14 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14): R
}
/** A function that takes 15 arguments. */publicinterfaceFunction15 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14, p15: P15): R
}
/** A function that takes 16 arguments. */publicinterfaceFunction16 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14, p15: P15, p16: P16): R
}
/** A function that takes 17 arguments. */publicinterfaceFunction17 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14, p15: P15, p16: P16, p17: P17): R
}
/** A function that takes 18 arguments. */publicinterfaceFunction18 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14, p15: P15, p16: P16, p17: P17, p18: P18): R
}
/** A function that takes 19 arguments. */publicinterfaceFunction19 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14, p15: P15, p16: P16, p17: P17, p18: P18, p19: P19): R
}
/** A function that takes 20 arguments. */publicinterfaceFunction20 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14, p15: P15, p16: P16, p17: P17, p18: P18, p19: P19, p20: P20): R
}
/** A function that takes 21 arguments. */publicinterfaceFunction21 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14, p15: P15, p16: P16, p17: P17, p18: P18, p19: P19, p20: P20, p21: P21): R
}
/** A function that takes 22 arguments. */publicinterfaceFunction22 : Function {
/** Invokes the function with the specified arguments. */publicoperatorfuninvoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7, p8: P8, p9: P9, p10: P10, p11: P11, p12: P12, p13: P13, p14: P14, p15: P15, p16: P16, p17: P17, p18: P18, p19: P19, p20: P20, p21: P21, p22: P22): R
}