remove and_then

This commit is contained in:
Quaternions 2024-10-06 18:20:53 -07:00
parent 6dfa46bc67
commit fe91de5668

View File

@ -267,12 +267,11 @@ impl mlua::UserData for Instance{
database:db, database:db,
descriptor:Some(class), descriptor:Some(class),
}; };
iter.find_map(|class| iter.find_map(|class|{
cf.get_or_create_class_methods(&class.name) let mut class_methods=cf.get_or_create_class_methods(&class.name)?;
.and_then(|mut class_methods| class_methods.get_or_create_function(lua,index_str)
class_methods.get_or_create_function(lua,index_str).transpose() .transpose()
) }).transpose()
).transpose()
})?{ })?{
return function.into_lua(lua); return function.into_lua(lua);
} }