5
votes
2answers
132 views
“unfold” for common lisp?
I learned quite a bit of scheme from SICP but am more interested in common lisp now. I know common lisp's fold is reduce, with special arguments for left or right folding, but what …
0
votes
5answers
175 views
Folding away assertions in C++ class?
So, in a non-class type of situation, I can do something like this:
int val_to_check = 0;
int some_func(int param) {
assert(val_to_check == 0);
return param*param+param;
}
i …
1
vote
1answer
65 views
Unable to edit a title without opening a fold in Vim
Let's assume you have a cursor at a closed fold as in the picture.
How can you edit the title of SMALLAPPS without opening the fold in Vim?
1
vote
4answers
295 views
How can I automatically fold a long C code in Vim?
I regularly run into C-codes without folding. It is irritating to read them if there is no folding, particularly with long files. How can I fold them?
1
vote
4answers
414 views
F# - Breaking a List into Concatenated Strings by an Interval
I have a list of email addresses, and I need to send an email notification to each address. I'd like to do this in blocks of 25 addresses at a time. Is there any quick way in a fun …
