aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/utilities/cast.kt
blob: c2598a3337e4ae61b32be4cfbff5efdfc16acf65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package org.jetbrains.dokka.utilities

import org.jetbrains.dokka.InternalDokkaApi

@InternalDokkaApi
public inline fun <reified T> Any.cast(): T {
    return this as T
}