Skip to content
#

c-plus-plus-17

Here are 192 public repositories matching this topic...

KingDuckZ
KingDuckZ commented Mar 21, 2020

Current documentation page for nana::label says:

Arrow cursor becomes a hand when the cursor moves over the red text. Meanwhile, it calls a web browser to open the URL by clicking the red text. NOTE: the url only works under Windows

with the NOTE part in bright red. I found this is not true as opening urls works just fine for

Kebap
Kebap commented Mar 16, 2020

Brief summary of issue / Description of requested feature:

More issues like #3458 solved

Steps to reproduce the issue / Reasons for adding feature:

  • Texts have whitespaces at beginning or end to help facilitate layout

Error output / Expected result of feature

  • Translators don't need to worry matching whitespaces around translated text.

Extra information, such as M

venediktov
venediktov commented Sep 22, 2017
  • create docker-compose-vanilla.yaml
    this command "docker-compose -f docker-compose-vanilla.yaml"
    should start NGINX configured for vanilla-rtb docker image + vanilla-rtb image with 3-4 http_handler_test running on 3-4 different ports .
    docker compose file should map volume for both nginx and vanilla-rtb , so that we could alter configuration if needed.
  • add performance tests results to o
nikhedonia
nikhedonia commented Oct 29, 2018

Sort can be implemented via scan by performing an inserting incoming elements into a vector.
To find the right position to insert can be found using a binary search.
This approach would lead to a runtime complexity of O(n log n).

potential API:

 range() 
   >> scan( vector<int>{}, sort() )
   >> drop(4)
   >> take(1);
   // should return {4,3,2,1,0}

To limit the size of t

Improve this page

Add a description, image, and links to the c-plus-plus-17 topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the c-plus-plus-17 topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.