This website requires JavaScript.
Explore
Help
Sign In
devtools
/
eigen
Watch
1
Star
0
Fork
0
You've already forked eigen
mirror of
https://gitlab.com/libeigen/eigen.git
synced
2026-04-10 11:34:33 +08:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
cd511a09aa6ecface515bbbc8be9e6fe78b45463
eigen
/
doc
/
snippets
/
Array_variadic_ctor_cxx11.cpp
4 lines
101 B
C++
Raw
Normal View
History
Unescape
Escape
PR 574: use variadic template instead of initializer_list to implement fixed-size vector ctor from coefficients.
2019-01-23 00:07:19 +01:00
Array
<
int
,
1
,
6
>
a
(
1
,
2
,
3
,
4
,
5
,
6
)
;
Clang-format tests, examples, libraries, benchmarks, etc.
2023-12-05 21:22:55 +00:00
Array
<
int
,
3
,
1
>
b
{
1
,
2
,
3
}
;
Make file formatting comply with POSIX and Unix standards UTF-8, LF, no BOM, and newlines at the end of files
2020-03-21 21:30:06 -04:00
cout
<
<
a
<
<
"
\n
\n
"
<
<
b
<
<
endl
;
Reference in New Issue
Copy Permalink