-
Updated
Dec 12, 2020 - C
ncurses
Here are 715 public repositories matching this topic...
-
Updated
Dec 2, 2020 - C
First: is this a bug report? A suggestion? Or asking for help? Bug report/suggestion
Problem description
For a &mut ProgressBar, there are no methods to set its min and max values. The only methods to change their values (min(self, usize), max(self, usize)) take ownership of the ProgressBar, which is not possible if you have a reference.
Workaround: to gain ownership, create a
-
Updated
Dec 7, 2020 - C
-
Updated
Nov 28, 2020 - C
-
Updated
Dec 11, 2020 - C
-
Updated
Dec 13, 2020 - C
-
Updated
Jun 9, 2020 - C
-
Updated
Dec 12, 2020 - C++
-
Updated
Oct 19, 2020 - C++
-
Updated
Sep 26, 2018 - C
-
Updated
Mar 28, 2020 - C++
-
Updated
Jul 11, 2019 - Go
-
Updated
May 30, 2017 - C
-
Updated
Apr 21, 2020 - C
-
Updated
Nov 2, 2020 - Ruby
Improve this page
Add a description, image, and links to the ncurses topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the ncurses topic, visit your repo's landing page and select "manage topics."
In #2761 I introduced a new API,
struct Mailbox *ctx_mailbox(struct Context* ctx), which has the sole purpose to avoid boilerplate likeif (Context && Context->mailbox).I would like to use the API more extensively, whenever
Context->mailboxis used. This needs to be done with care asContextis a global variable and its contents might change when calling other functions.This would