Skip to content

Instantly share code, notes, and snippets.

@pmiddend
Created December 24, 2015 19:35
Show Gist options
  • Save pmiddend/513f652f05c1d46a2d0c to your computer and use it in GitHub Desktop.
Save pmiddend/513f652f05c1d46a2d0c to your computer and use it in GitHub Desktop.
return
fcppt::algorithm::map_concat<file_table>(
result,
[](optional_file_table::value_type const &r)
{
return
fcppt::maybe(
r,
[]() { return file_table{}; },
[](file_table_entry const &e) { return file_table{e}; });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment