What is the primary advantage of `std::string_view` over `const std::string&` as a function parameter?
-
A
Avoids copying and works with any contiguous char sequence
-
B
Provides null-termination guarantees
-
C
Owns its character data
-
D
Supports Unicode by default