aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/ca/allanwang/kau/utils/FragmentUtils.kt
blob: acc71f27a8f3eb4d88c0555809a07d556fe44bb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package ca.allanwang.kau.utils

import android.support.v4.app.Fragment
import org.jetbrains.anko.bundleOf

/**
 * Created by Allan Wang on 2017-07-02.
 */
fun <T : Fragment> T.withArguments(vararg params: Pair<String, Any>): T {
    arguments = bundleOf(*params)
    return this
}