├── .github └── workflows │ ├── build-pull-request.yaml │ └── publish-release.yaml ├── .gitignore ├── .idea └── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cast ├── api │ └── polycast-core.api ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ └── cast │ │ └── cast.kt │ └── commonTest │ └── kotlin │ └── MainTest.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── librarian.root.properties └── settings.gradle.kts /.github/workflows/build-pull-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/.github/workflows/build-pull-request.yaml -------------------------------------------------------------------------------- /.github/workflows/publish-release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/.github/workflows/publish-release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/README.md -------------------------------------------------------------------------------- /cast/api/polycast-core.api: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cast/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/cast/build.gradle.kts -------------------------------------------------------------------------------- /cast/src/commonMain/kotlin/cast/cast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/cast/src/commonMain/kotlin/cast/cast.kt -------------------------------------------------------------------------------- /cast/src/commonTest/kotlin/MainTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/cast/src/commonTest/kotlin/MainTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/gradlew.bat -------------------------------------------------------------------------------- /librarian.root.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/librarian.root.properties -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbonnin/kotlin-cast/HEAD/settings.gradle.kts --------------------------------------------------------------------------------