teditor  1.8.0@@fee5e94
Terminal based editor written in C++
Functions
Functions to append/prepend/insert chars to the line

Functions

void teditor::Line::append (char c)
 
void teditor::Line::append (const char *c)
 
void teditor::Line::append (const std::string &str)
 
void teditor::Line::prepend (char c)
 
void teditor::Line::prepend (const char *c)
 
void teditor::Line::prepend (char c, int count)
 
void teditor::Line::insert (char c, int idx)
 
void teditor::Line::insert (const char *c, int idx)
 
void teditor::Line::insert (const std::string &str, int idx)
 

Detailed Description

Function Documentation

◆ append() [1/3]

void teditor::Line::append ( char  c)
inline

◆ append() [2/3]

void teditor::Line::append ( const char *  c)
inline

◆ append() [3/3]

void teditor::Line::append ( const std::string &  str)
inline

◆ insert() [1/3]

void teditor::Line::insert ( char  c,
int  idx 
)

◆ insert() [2/3]

void teditor::Line::insert ( const char *  c,
int  idx 
)

◆ insert() [3/3]

void teditor::Line::insert ( const std::string &  str,
int  idx 
)

◆ prepend() [1/3]

void teditor::Line::prepend ( char  c)
inline

◆ prepend() [2/3]

void teditor::Line::prepend ( char  c,
int  count 
)

◆ prepend() [3/3]

void teditor::Line::prepend ( const char *  c)
inline