#
cxx
Here are 387 public repositories matching this topic...
scullionw
commented
Apr 26, 2021
Expected Behavior
I can pass std::vector<int32_t>
, but the the c++ library I want to use uses int
, not int32_t
std::vector<int> build_array() {
auto values = std::vector<int> {1,2,3,4,5};
for (auto& v: values) v = v * 2;
return values;
}
Not sure how to get around this since I can't impl VectorElement
for c_int
due to the orphan rule? There must b
log4cplus is a simple to use C++ logging API providing thread-safe, flexible, and arbitrarily granular control over log management and configuration. It is modelled after the Java log4j API.
-
Updated
Jul 15, 2021 - C++
Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
audio
cplusplus
dft
cxx
travis-ci
dsp
cpp14
intel
avx
clang
simd
header-only
fast-fourier-transform
cpp17
cplusplus-14
fft
digital-signal-processing
avx512
ser
audio-processing
cplusplus-17
discrete-fourier-transform
-
Updated
May 14, 2021 - C++
lightweight hypervisor SDK written in C++ with support for Windows, Linux and UEFI
-
Updated
Jul 15, 2021 - C++
1
dumerrill
commented
Mar 21, 2018
Please note that this function has been deprecated in 2011
C++ python bytecode disassembler and decompiler
-
Updated
Apr 12, 2021 - C++
SonarQube C++ Community plugin (cxx plugin): This plugin adds C++ support to SonarQube with the focus on integration of existing C++ tools.
-
Updated
Jul 23, 2021 - Java
Vim plugin for C/C++/ObjC semantic highlighting using cquery, ccls, or clangd
c
vim
cxx
neovim
cpp
vim-plugin
language-server-protocol
nvim
coc
clangd
languageclient
vim-lsp
semantic-highlighting
cquery
ccls
language-server-client
-
Updated
May 22, 2021 - Vim script
C++14 (and beyond) library features implemented in C++11
-
Updated
Aug 15, 2017 - C++
A Modular Optimization framework for Localization and mApping (MOLA)
computer-vision
localization
cxx
toolkit
lidar
datasets
slam
mobile-robots
graph-slam
visual-slam
lidar-point-cloud
cxx17
-
Updated
Jul 1, 2021 - Shell
-
Updated
Jul 19, 2021 - C++
Ethereal Language Reference Implementation (archived). Currently working on Feral
language
interpreter
cxx
scripting-language
interpreted-programming-language
bytecode-interpreter
interpreted-language
-
Updated
May 21, 2020 - C++
Feral programming language reference implementation
programming-language
interpreter
cxx
compiler
cpp
scripting-language
cpp11
interpreted-programming-language
bytecode-interpreter
cxx11
-
Updated
Jun 29, 2021 - C++
Syntax Highlighter extension for Visual Studio Code (VSCode). Based on Tree-sitter.
javascript
ruby
python
c
syntax-highlighting
go
rust
golang
syntax
php
tree-sitter
typescript
lua
cxx
cpp
vscode
syntax-tree
vscode-extension
shellscript
syntax-highlighter
-
Updated
Jun 21, 2021 - TypeScript
Modern OpenGL renderer written in C++17
-
Updated
Oct 29, 2018 - C
linux
cli
freebsd
utility
cmake
cxx
cpp
ninja
arch-linux
qtcreator
bsd
clang-format
scons
void-linux
cpp20
pipewire
cpp23
cxx20
auto-detection
cxx23
-
Updated
Jun 29, 2021 - Python
Another free Win32 resource editor
-
Updated
Jul 20, 2021 - C++
Selection and partial sorting algorithms
-
Updated
Jan 23, 2021 - C++
Improve this page
Add a description, image, and links to the cxx topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the cxx topic, visit your repo's landing page and select "manage topics."
First of all, great library!
I am having some confusion in understanding the role of
values_first2
inset_difference_by_key
as mentioned here.In general terms, the result of set difference
D = A - B
will not contain values fromB
thereforevalues_first2
can never be part ofD
. So `val