mirror of
https://github.com/dlang/phobos.git
synced 2025-04-26 05:00:35 +03:00
Finally remove std.regexp.
It's been deprecated for some time now, and we no longer have anything in Phobos which depends on it. So, it's long past time for it to be fully removed.
This commit is contained in:
parent
e951594cc0
commit
cf6ba6ebda
6 changed files with 8 additions and 3450 deletions
2
index.d
2
index.d
|
@ -190,7 +190,7 @@ $(V1
|
|||
<dd>Recursively search file system and (currently Windows
|
||||
only) FTP sites.
|
||||
)
|
||||
<dt><a href="std_regexp.html"><b>std.regexp</b></a>
|
||||
<dt><a href="std_regex.html"><b>std.regex</b></a>
|
||||
<dd>The usual regular expression functions.
|
||||
|
||||
<dt><a href="std_socket.html"><b>std.socket</b></a>
|
||||
|
|
|
@ -164,7 +164,7 @@ STD_MODULES = $(addprefix std/, algorithm array ascii base64 bigint \
|
|||
cpuid cstream ctype csv datetime demangle encoding exception \
|
||||
file format functional getopt json math mathspecial md5 \
|
||||
metastrings mmfile numeric outbuffer parallelism path perf \
|
||||
process random range regex regexp signals socket socketstream \
|
||||
process random range regex signals socket socketstream \
|
||||
stdint stdio stdiobase stream string syserror system traits \
|
||||
typecons typetuple uni uri utf uuid variant xml zip zlib)
|
||||
|
||||
|
|
3434
std/regexp.d
3434
std/regexp.d
File diff suppressed because it is too large
Load diff
|
@ -39,7 +39,7 @@ public import std.path;
|
|||
public import std.perf;
|
||||
public import std.process;
|
||||
public import std.random;
|
||||
public import std.regexp;
|
||||
public import std.regex;
|
||||
public import std.signals;
|
||||
//public import std.slist;
|
||||
public import std.socket;
|
||||
|
@ -82,7 +82,7 @@ else
|
|||
std.conv.to!double("1.0"); // std.conv
|
||||
OutBuffer b = new OutBuffer(); // outbuffer
|
||||
std.ctype.tolower('A'); // ctype
|
||||
RegExp r = new RegExp(null, null); // regexp
|
||||
auto r = regex(""); // regex
|
||||
uint ranseed = std.random.unpredictableSeed;
|
||||
thisTid;
|
||||
int a[];
|
||||
|
|
|
@ -117,7 +117,7 @@ SRC_STD_3= std\csv.d std\math.d std\complex.d std\numeric.d std\bigint.d \
|
|||
|
||||
SRC_STD_3a= std\signals.d std\typetuple.d std\traits.d \
|
||||
std\encoding.d std\xml.d \
|
||||
std\random.d std\regexp.d \
|
||||
std\random.d \
|
||||
std\exception.d \
|
||||
std\compiler.d std\cpuid.d \
|
||||
std\system.d std\concurrency.d
|
||||
|
@ -156,7 +156,7 @@ SRC_STD= std\zlib.d std\zip.d std\stdint.d std\container.d std\conv.d std\utf.d
|
|||
std\outbuffer.d std\md5.d std\base64.d \
|
||||
std\mmfile.d \
|
||||
std\syserror.d \
|
||||
std\regexp.d std\random.d std\stream.d std\process.d \
|
||||
std\random.d std\stream.d std\process.d \
|
||||
std\socket.d std\socketstream.d std\format.d \
|
||||
std\stdio.d std\perf.d std\uni.d std\uuid.d \
|
||||
std\cstream.d std\demangle.d \
|
||||
|
@ -319,7 +319,6 @@ DOCS= $(DOC)\object.html \
|
|||
$(DOC)\std_random.html \
|
||||
$(DOC)\std_range.html \
|
||||
$(DOC)\std_regex.html \
|
||||
$(DOC)\std_regexp.html \
|
||||
$(DOC)\std_signals.html \
|
||||
$(DOC)\std_socket.html \
|
||||
$(DOC)\std_socketstream.html \
|
||||
|
@ -580,9 +579,6 @@ $(DOC)\std_range.html : $(STDDOC) std\range.d
|
|||
$(DOC)\std_regex.html : $(STDDOC) std\regex.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_regex.html $(STDDOC) std\regex.d
|
||||
|
||||
$(DOC)\std_regexp.html : $(STDDOC) std\regexp.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_regexp.html $(STDDOC) std\regexp.d
|
||||
|
||||
$(DOC)\std_signals.html : $(STDDOC) std\signals.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_signals.html $(STDDOC) std\signals.d
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ SRC_STD_3a= std\uni.d std\base64.d std\md5.d std\ctype.d std\ascii.d \
|
|||
|
||||
SRC_STD_3b= std\signals.d std\typetuple.d std\traits.d \
|
||||
std\encoding.d std\xml.d \
|
||||
std\random.d std\regexp.d \
|
||||
std\random.d \
|
||||
std\exception.d \
|
||||
std\compiler.d std\cpuid.d \
|
||||
std\system.d std\concurrency.d
|
||||
|
@ -178,7 +178,7 @@ SRC_STD= std\zlib.d std\zip.d std\stdint.d std\container.d std\conv.d std\utf.d
|
|||
std\outbuffer.d std\md5.d std\base64.d \
|
||||
std\mmfile.d \
|
||||
std\syserror.d \
|
||||
std\regexp.d std\random.d std\stream.d std\process.d \
|
||||
std\random.d std\stream.d std\process.d \
|
||||
std\socket.d std\socketstream.d std\format.d \
|
||||
std\stdio.d std\perf.d std\uni.d std\uuid.d \
|
||||
std\cstream.d std\demangle.d \
|
||||
|
@ -341,7 +341,6 @@ DOCS= $(DOC)\object.html \
|
|||
$(DOC)\std_random.html \
|
||||
$(DOC)\std_range.html \
|
||||
$(DOC)\std_regex.html \
|
||||
$(DOC)\std_regexp.html \
|
||||
$(DOC)\std_signals.html \
|
||||
$(DOC)\std_socket.html \
|
||||
$(DOC)\std_socketstream.html \
|
||||
|
@ -633,9 +632,6 @@ $(DOC)\std_range.html : $(STDDOC) std\range.d
|
|||
$(DOC)\std_regex.html : $(STDDOC) std\regex.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_regex.html $(STDDOC) std\regex.d
|
||||
|
||||
$(DOC)\std_regexp.html : $(STDDOC) std\regexp.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_regexp.html $(STDDOC) std\regexp.d
|
||||
|
||||
$(DOC)\std_signals.html : $(STDDOC) std\signals.d
|
||||
$(DMD) -c -o- $(DDOCFLAGS) -Df$(DOC)\std_signals.html $(STDDOC) std\signals.d
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue