Skip to content

Navigation Menu

Sign inAppearance settings
Appearance settings

Latest commit

 

History

History
History
25 lines (21 loc) · 698 Bytes

File metadata and controls

25 lines (21 loc) · 698 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
* 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.
*/
package kotlin.js
import kotlin.wasm.internal.ExcludedFromCodegen
import kotlin.wasm.internal.WasmNoOpCast
import kotlin.wasm.internal.implementedAsIntrinsic
/**
* Any JavaScript value except null or undefined
*/
@ExperimentalWasmJsInterop
public actual external interface JsAny
/**
* Cast JsAny to other Js type without runtime check
*/
@WasmNoOpCast
@ExcludedFromCodegen
@ExperimentalWasmJsInterop
public actual fun <T : JsAny> JsAny.unsafeCast(): T =
implementedAsIntrinsic
Morty Proxy This is a proxified and sanitized view of the page, visit original site.