actorvalue blob clone wip

This commit is contained in:
minjaesong
2025-02-09 20:55:42 +09:00
parent 497782b428
commit 34d8f1504f

View File

@@ -87,7 +87,12 @@ class ActorValue : KVHashMap {
}
fun clone(newActor: Actor): ActorValue {
return ActorValue(newActor, hashMap)
return ActorValue(newActor, hashMap).also {
val listOfBlobs = it.hashMap.entries.filter { (it.value as? String)?.startsWith(BLOB) ?: false }
listOfBlobs.forEach {
}
}
// TODO clone blobs
}