olli
It's a range library for C++11/14/17 that has been proposed for C++20
It's pretty neat
BinaryByter
BinaryByter
I am eager for c++23
olli
I hope for so many things to be part of c++ 20..
BinaryByter
BinaryByter
math constants
BinaryByter
ranges
BinaryByter
a better string class
olli
you missed coroutines ! and modules as well as networking :D
BinaryByter
BinaryByter
what are modules?
Ludovic 'Archivist'
Yeah coroutines are love
Ludovic 'Archivist'
Standard stackfull coroutines is my dream
olli
olli
Something like the Resumeable Expressions proposed by Christopher Kohlhoff would be perfectly fine imho (http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4453.pdf)
BinaryByter
BinaryByter
yea
BinaryByter
no
olli
IIRC there was some precompilation of header files and a more compatible ABI
BinaryByter
I still don't understand ABI's
olli
whatsoever, the one thing i care for the most are coroutines
BinaryByter
@QNeko teach me
BinaryByter
olli
will probably not be in C++20 though
BinaryByter
i hope
Anonymous
Anybody knows the site for the test series for remove bugs , compile and run the c programs like c languages McQ type
BinaryByter
very funny
BinaryByter
olli
Being ABI compatible with future versions can be challenging, so not boring per se
BinaryByter
i'm not the guy who builds the compiler
olli
this applies to any compiled library as well
BinaryByter
I already did so twice lol
Ludovic 'Archivist'
BinaryByter
wasted time, really
BinaryByter
I have to trust the life of my phone to this indian website's cloud ;_;
BinaryByter
I might not have a phone in twenty minutes anymore :D
BinaryByter
wat?
BinaryByter
I am in germany :)
BinaryByter
wrong
olli
The one that presents the best solution to my problem.
olli
Multi paradigm
olli
I am not sure I got your question.
All members of your class need to be defined inside it. To use your constructor in other translation units you need to add the constructor to your class definition (in your header) as well.
Flag.txt
Thanks marie
Flag.txt
Ok
Flag.txt
What is the topic for today
Flag.txt
klimi
Today topics is unknown
klimi
Please write /newtopic for generate a new one
BinaryByter
/newtopic
BinaryByter
THIS
BinaryByter
is why you shoudln't use vim
klimi
Why lol
klimi
BinaryByter
the line numbers
BinaryByter
yes, I do use vim myself
klimi
You can copy it without
BinaryByter
you can't
klimi
You can lol
Flag.txt
Because I am still learning
BinaryByter
visual mode + yank won't push to the clipboard
Flag.txt
Hw can I start
BinaryByter
BinaryByter
the variable is protected
BinaryByter
and I inherit the base class
BinaryByter
why can't I access prealloc_size?
BinaryByter
I should be able to
BinaryByter
from all I know
BinaryByter
Visual Studio Code
BinaryByter
Youll find out
BinaryByter
Nothing, use it as much as you'd want
BinaryByter
Its the perfect language
BinaryByter
No i just dont want to discuss stuff ive discussed over and over
BinaryByter
Time for some more indian music. Aka earrape
olli
Protected member access
Protected members form the interface for the derived classes (which is distinct from the public interface of the class).
A protected member of a class Base can only be accessed
1) by the members and friends of Base
2) by the members and friends (until C++17) of any class derived from Base, but only when operating on an object of a type that is derived from Base (including this)