python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Can't use std::format in c++20
I've been trying to use the std::format function included in C++20. As far as I can tell, clang 14 is supposed to support this feature, but for some reason I am receiving the following error: no membe...
Saerynity
Votes: 0
Answers: 2
Generating simple format string at compile time
I'm trying to generate a simple format string for fmt at compile time, but I can't quite figure out the string concatenation. I'm limited to c++ 14.
What I'd like is to be able to generate a format s...
Rob W.
Votes: 0
Answers: 1
Is there a way to perform operations on a file opened with fopenf using stream operators?
I have a large C++ codebase that opens various files using the fopenf command (returning a FILE*), and performs operations throughout the code such as writing to and reading from the files using fputc...
wand_swe
Votes: 0
Answers: 1
Specializing formatting for pointer to class
I need to provide format-magic to a class hierarchy and usually those things are passed around via pointer. This example here works currently on master:
#include <type_traits>
#include <sstre...
Roland Leißa
Votes: 0
Answers: 1