createHooks

@JvmName(name = "-createMethodHooks")
fun Iterable<Method>.createHooks(priority: Int = PRIORITY_DEFAULT, block: HookFactory.() -> Unit): List<XC_MethodHook.Unhook>
@JvmName(name = "-createMethodHooks")
fun Array<Method>.createHooks(priority: Int = PRIORITY_DEFAULT, block: HookFactory.() -> Unit): List<XC_MethodHook.Unhook>
@JvmName(name = "-createConstructorHooks")
fun Iterable<Constructor<*>>.createHooks(priority: Int = PRIORITY_DEFAULT, block: HookFactory.() -> Unit): List<XC_MethodHook.Unhook>
@JvmName(name = "-createConstructorHooks")
fun Array<Constructor<*>>.createHooks(priority: Int = PRIORITY_DEFAULT, block: HookFactory.() -> Unit): List<XC_MethodHook.Unhook>
@JvmName(name = "createMethodHooks")
fun createHooks(priority: Int = PRIORITY_DEFAULT, methods: Iterable<Method>, block: Consumer<HookFactory>): List<XC_MethodHook.Unhook>
@JvmName(name = "createMethodHooks")
fun createHooks(priority: Int = PRIORITY_DEFAULT, methods: Array<Method>, block: Consumer<HookFactory>): List<XC_MethodHook.Unhook>
@JvmName(name = "createConstructorHooks")
fun createHooks(priority: Int = PRIORITY_DEFAULT, ctors: Iterable<Constructor<*>>, block: Consumer<HookFactory>): List<XC_MethodHook.Unhook>
@JvmName(name = "createConstructorHooks")
fun createHooks(priority: Int = PRIORITY_DEFAULT, ctors: Array<Constructor<*>>, block: Consumer<HookFactory>): List<XC_MethodHook.Unhook>