ladybird/Userland/Libraries/LibSQL
Lenny Maiorani f912a48315 Userland: Change static const variables to static constexpr
`static const` variables can be computed and initialized at run-time
during initialization or the first time a function is called. Change
them to `static constexpr` to ensure they are computed at
compile-time.

This allows some removal of `strlen` because the length of the
`StringView` can be used which is pre-computed at compile-time.
2022-03-18 19:58:57 +01:00
..
AST Userland: Change static const variables to static constexpr 2022-03-18 19:58:57 +01:00
BTree.cpp
BTree.h
BTreeIterator.cpp
CMakeLists.txt LibSQL+SQLServer: Move LibSQL/SQLResult.[h,cpp] to LibSQL/Result.[h,cpp] 2022-02-10 12:20:35 +00:00
Database.cpp LibSQL: Implement a DESCRIBE TABLE statement 2022-02-05 00:35:03 +01:00
Database.h LibSQL: Implement a DESCRIBE TABLE statement 2022-02-05 00:35:03 +01:00
Forward.h LibSQL+SQLServer: Introduce and use ResultOr<ValueType> 2022-02-10 23:11:13 +01:00
HashIndex.cpp
HashIndex.h
Heap.cpp Everywhere: Convert ByteBuffer factory methods from Optional -> ErrorOr 2022-01-24 22:36:09 +01:00
Heap.h
Index.cpp
Index.h
Key.cpp
Key.h
Meta.cpp
Meta.h LibSQL: Do not return copies of vectors from table/index definitions 2022-02-10 12:20:35 +00:00
Result.cpp LibSQL+SQLServer: Introduce and use ResultOr<ValueType> 2022-02-10 23:11:13 +01:00
Result.h LibSQL+SQLServer: Introduce and use ResultOr<ValueType> 2022-02-10 23:11:13 +01:00
ResultSet.cpp LibSQL+SQLServer: Introduce and use ResultOr<ValueType> 2022-02-10 23:11:13 +01:00
ResultSet.h LibSQL+SQLServer: Introduce and use ResultOr<ValueType> 2022-02-10 23:11:13 +01:00
Row.cpp
Row.h
Serializer.cpp
Serializer.h
SQLClient.cpp Libraries: Use default constructors/destructors in LibSQL 2022-03-13 22:34:38 +01:00
SQLClient.h Libraries: Use default constructors/destructors in LibSQL 2022-03-13 22:34:38 +01:00
TreeNode.cpp
Tuple.cpp
Tuple.h
TupleDescriptor.h
Type.h
Value.cpp LibSQL: Convert binary SQL operations to be fallible 2022-02-13 21:30:38 +00:00
Value.h LibSQL: Convert binary SQL operations to be fallible 2022-02-13 21:30:38 +00:00
ValueImpl.h LibSQL: Implement converting float and tuple values to a boolean 2022-02-13 21:30:38 +00:00