8 lines
120 B
Plaintext
8 lines
120 B
Plaintext
# -*- mode: snippet -*-
|
|
# name: const_[]
|
|
# key: c[
|
|
# --
|
|
const ${1:Type}& operator[](${2:int index}) const
|
|
{
|
|
$0
|
|
} |