toRealmDictionary

fun <T> Iterable<Pair<String, T>>.toRealmDictionary(): RealmDictionary<T>

Instantiates an unmanagedRealmDictionary containing all the elements of this iterable of Pairs of Strings and Ts.


fun <T> RealmDictionaryEntrySet<T>.toRealmDictionary(): RealmDictionary<T>

Instantiates an unmanagedRealmDictionary containing all the elements of the receiver RealmDictionaryEntrySet.


fun <T> Map<String, T>.toRealmDictionary(): RealmDictionary<T>

Instantiates an unmanagedRealmDictionary containing all the elements of the receiver dictionary represented by a Map of String to T pairs.