summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/src_corelib_text_qstringview.cpp
blob: 676baa5aee22a61d3becbb87107238b3b185a7cf (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

//! [0]
    void myfun1(QStringView sv);        // preferred
    void myfun2(const QStringView &sv); // compiles and works, but slower
//! [0]

//! [1]
    void fun(QChar ch) { fun(QStringView(&ch, 1)); }
//! [1]