You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "Jacob S. Barrett (JIRA)" <ji...@apache.org> on 2018/05/02 14:59:00 UTC

[jira] [Updated] (GEODE-5169) region::putAll should accept range iterators

     [ https://issues.apache.org/jira/browse/GEODE-5169?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacob S. Barrett updated GEODE-5169:
------------------------------------
    Description: 
{code}
auto someCollectionOfPairs = getSomeCollectionOfPairs();
region->putAll(std::begin(someCollectionOfPairs),
               std::end(someCollectionOfPairs));
{code}

  was:
{code:c++}
auto someCollectionOfPairs = getSomeCollectionOfPairs();
region->putAll(std::begin(someCollectionOfPairs),
                        std::end(someCollectionOfPairs));
{code}


> region::putAll should accept range iterators
> --------------------------------------------
>
>                 Key: GEODE-5169
>                 URL: https://issues.apache.org/jira/browse/GEODE-5169
>             Project: Geode
>          Issue Type: Improvement
>          Components: native client
>            Reporter: Jacob S. Barrett
>            Priority: Major
>
> {code}
> auto someCollectionOfPairs = getSomeCollectionOfPairs();
> region->putAll(std::begin(someCollectionOfPairs),
>                std::end(someCollectionOfPairs));
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)