summaryrefslogtreecommitdiff
path: root/docs/man/man3/nspace_nspace_hash_ string _.3
blob: e80d304e49d950b090916442941680ad340ca854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
.TH "nspace::nspace::hash< string >" 3 "12 May 2005" "InspIRCd" \" -*- nroff -*-
.ad l
.nh
.SH NAME
nspace::nspace::hash< string > \- 
.SH SYNOPSIS
.br
.PP
.SS "Public Member Functions"

.in +1c
.ti -1c
.RI "size_t \fBoperator()\fP (const string &s) const"
.br
.in -1c

.SS "template<> struct nspace::hash< string >"

.SH "Member Function Documentation"
.PP 
.SS "size_t nspace::hash< string >::operator() (const string & s) const\fC [inline]\fP"
.PP
Definition at line 142 of file modules.cpp.
.PP
.nf
143                 {
144                         char a[MAXBUF];
145                         static struct hash<const char *> strhash;
146                         strlcpy(a,s.c_str(),MAXBUF);
147                         strlower(a);
148                         return strhash(a);
149                 }
.fi


.SH "Author"
.PP 
Generated automatically by Doxygen for InspIRCd from the source code.