toggle menu
kevlar-core
3.0.5
common
switch theme
search in API
kevlar-core
/
kevlar
Package-level
declarations
Types
Functions
Types
Action
Link copied to clipboard
interface
Action
<
out
H
>
Action0
Link copied to clipboard
interface
Action0
<
out
R
>
:
Action
<
(
)
->
R
>
Action0Container
Link copied to clipboard
interface
Action0Container
<
out
R
>
:
Action0
<
R
>
,
ActionContainer
<
(
)
->
R
>
Action0Invoker
Link copied to clipboard
interface
Action0Invoker
<
out
R
>
:
Action0
<
R
>
,
ActionInvoker
<
(
)
->
R
>
Action1
Link copied to clipboard
interface
Action1
<
in
I
,
out
R
>
:
Action
<
(
I
)
->
R
>
Action1Container
Link copied to clipboard
interface
Action1Container
<
in
I
,
out
R
>
:
Action1
<
I
,
R
>
,
ActionContainer
<
(
I
)
->
R
>
Action1Invoker
Link copied to clipboard
interface
Action1Invoker
<
in
I
,
out
R
>
:
Action1
<
I
,
R
>
,
ActionInvoker
<
(
I
)
->
R
>
Action
Container
Link copied to clipboard
interface
ActionContainer
<
out
H
>
:
Action
<
H
>
Action
Invoker
Link copied to clipboard
interface
ActionInvoker
<
out
H
>
:
Action
<
H
>
Actions
Builder
Link copied to clipboard
abstract
class
ActionsBuilder
<
out
A
,
in
H
>
Functions
action0
Link copied to clipboard
inline
fun
<
T
>
action0
(
name
:
String
,
key
:
String
=
name.lowercase()
,
actions
:
List
<
Action0
<
T
>
>
)
:
Action0Container
<
T
>
inline
fun
<
T
>
action0
(
name
:
String
,
key
:
String
=
name.lowercase()
,
noinline
handler
:
(
)
->
T
)
:
Action0Invoker
<
T
>
action1
Link copied to clipboard
inline
fun
<
I
,
O
>
action1
(
name
:
String
,
key
:
String
=
name.lowercase()
,
actions
:
List
<
Action1
<
I
,
O
>
>
)
:
Action1Container
<
I
,
O
>
inline
fun
<
I
,
O
>
action1
(
name
:
String
,
key
:
String
=
name.lowercase()
,
noinline
handler
:
(
I
)
->
O
)
:
Action1Invoker
<
I
,
O
>