 |
Changeset 3349
- Timestamp:
- 03/13/08 14:13:51
(9 months ago)
- Author:
- Nietsnie
- Message:
Replaced all == null and != null that I could find with is null and !is null to be nice with DMD 1.028
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1072 |
r3349 |
|
| 489 | 489 | parent = &root; |
|---|
| 490 | 490 | rover = *parent; |
|---|
| 491 | | while (rover != null) // while we haven't run out of tree |
|---|
| | 491 | while (rover !is null) // while we haven't run out of tree |
|---|
| 492 | 492 | { |
|---|
| 493 | 493 | cmp = stringCompare (id, rover.Sident); |
|---|
| … | … | |
| 692 | 692 | SymPair **psp; |
|---|
| 693 | 693 | |
|---|
| 694 | | if (trace_logfilename && (fp = fopen(trace_logfilename.ptr,"r")) != null) |
|---|
| | 694 | if (trace_logfilename && (fp = fopen(trace_logfilename.ptr,"r")) !is null) |
|---|
| 695 | 695 | { |
|---|
| 696 | 696 | buf = null; |
|---|
| r839 |
r3349 |
|
| 248 | 248 | found_type = Found.nothing; |
|---|
| 249 | 249 | } |
|---|
| 250 | | else if (action_record == null) |
|---|
| | 250 | else if (action_record is null) |
|---|
| 251 | 251 | { |
|---|
| 252 | 252 | // If ip is present, has a non-null landing pad, and a null |
|---|
| r1856 |
r3349 |
|
| 86 | 86 | |
|---|
| 87 | 87 | p = VirtualAlloc(base + offset, nbytes, MEM_COMMIT, PAGE_READWRITE); |
|---|
| 88 | | return cast(int)(p == null); |
|---|
| | 88 | return cast(int)(p is null); |
|---|
| 89 | 89 | } |
|---|
| 90 | 90 | |
|---|
| r3155 |
r3349 |
|
| 465 | 465 | { |
|---|
| 466 | 466 | p = gcx.bucket[bin]; |
|---|
| 467 | | if (p == null) |
|---|
| | 467 | if (p is null) |
|---|
| 468 | 468 | { |
|---|
| 469 | 469 | if (!gcx.allocPage(bin) && !gcx.disabled) // try to find a new page |
|---|
| r3295 |
r3349 |
|
| 1804 | 1804 | |
|---|
| 1805 | 1805 | // pentry is null at end of listing, or on an error |
|---|
| 1806 | | while (readdir_r (dir, &entry, &pentry), pentry != null) |
|---|
| | 1806 | while (readdir_r (dir, &entry, &pentry), pentry !is null) |
|---|
| 1807 | 1807 | { |
|---|
| 1808 | 1808 | auto len = tango.stdc.string.strlen (entry.d_name.ptr); |
|---|
| r3312 |
r3349 |
|
| 336 | 336 | |
|---|
| 337 | 337 | // Any specific IP to listen on? |
|---|
| 338 | | if (listen_ip == null) |
|---|
| | 338 | if (listen_ip is null) |
|---|
| 339 | 339 | this.data_info.listen = new IPv4Address(IPv4Address.ADDR_ANY, listen_port); |
|---|
| 340 | 340 | else |
|---|
| r3086 |
r3349 |
|
| 307 | 307 | */ |
|---|
| 308 | 308 | public static Culture getCulture(char[] cultureName) { |
|---|
| 309 | | if (cultureName == null) |
|---|
| | 309 | if (cultureName is null) |
|---|
| 310 | 310 | error("Value cannot be null."); |
|---|
| 311 | 311 | Culture culture = getCultureInternal(0, cultureName); |
|---|
| … | … | |
| 321 | 321 | */ |
|---|
| 322 | 322 | public static Culture getCultureFromIetfLanguageTag(char[] name) { |
|---|
| 323 | | if (name == null) |
|---|
| | 323 | if (name is null) |
|---|
| 324 | 324 | error("Value cannot be null."); |
|---|
| 325 | 325 | Culture culture = getCultureInternal(-1, name); |
|---|
| … | … | |
| 359 | 359 | if (cultureID == -1) { |
|---|
| 360 | 360 | name = CultureData.getCultureNameFromIetfName(name); |
|---|
| 361 | | if (name == null) |
|---|
| | 361 | if (name is null) |
|---|
| 362 | 362 | return null; |
|---|
| 363 | 363 | } |
|---|
| … | … | |
| 1514 | 1514 | |
|---|
| 1515 | 1515 | package char[][] shortTimePatterns() { |
|---|
| 1516 | | if (shortTimePatterns_ == null) |
|---|
| | 1516 | if (shortTimePatterns_ is null) |
|---|
| 1517 | 1517 | shortTimePatterns_ = cultureData_.shortTimes; |
|---|
| 1518 | 1518 | return shortTimePatterns_.dup; |
|---|
| … | … | |
| 1520 | 1520 | |
|---|
| 1521 | 1521 | package char[][] shortDatePatterns() { |
|---|
| 1522 | | if (shortDatePatterns_ == null) |
|---|
| | 1522 | if (shortDatePatterns_ is null) |
|---|
| 1523 | 1523 | shortDatePatterns_ = cultureData_.shortDates; |
|---|
| 1524 | 1524 | return shortDatePatterns_.dup; |
|---|
| … | … | |
| 1526 | 1526 | |
|---|
| 1527 | 1527 | package char[][] longTimePatterns() { |
|---|
| 1528 | | if (longTimePatterns_ == null) |
|---|
| | 1528 | if (longTimePatterns_ is null) |
|---|
| 1529 | 1529 | longTimePatterns_ = cultureData_.longTimes; |
|---|
| 1530 | 1530 | return longTimePatterns_.dup; |
|---|
| … | … | |
| 1532 | 1532 | |
|---|
| 1533 | 1533 | package char[][] longDatePatterns() { |
|---|
| 1534 | | if (longDatePatterns_ == null) |
|---|
| | 1534 | if (longDatePatterns_ is null) |
|---|
| 1535 | 1535 | longDatePatterns_ = cultureData_.longDates; |
|---|
| 1536 | 1536 | return longDatePatterns_.dup; |
|---|
| … | … | |
| 1538 | 1538 | |
|---|
| 1539 | 1539 | package char[][] yearMonthPatterns() { |
|---|
| 1540 | | if (yearMonthPatterns_ == null) |
|---|
| | 1540 | if (yearMonthPatterns_ is null) |
|---|
| 1541 | 1541 | yearMonthPatterns_ = cultureData_.yearMonths; |
|---|
| 1542 | 1542 | return yearMonthPatterns_; |
|---|
| … | … | |
| 1815 | 1815 | */ |
|---|
| 1816 | 1816 | public final char[] dateSeparator() { |
|---|
| 1817 | | if (dateSeparator_ == null) |
|---|
| | 1817 | if (dateSeparator_ is null) |
|---|
| 1818 | 1818 | dateSeparator_ = cultureData_.date; |
|---|
| 1819 | 1819 | return dateSeparator_; |
|---|
| … | … | |
| 1834 | 1834 | */ |
|---|
| 1835 | 1835 | public final char[] timeSeparator() { |
|---|
| 1836 | | if (timeSeparator_ == null) |
|---|
| | 1836 | if (timeSeparator_ is null) |
|---|
| 1837 | 1837 | timeSeparator_ = cultureData_.time; |
|---|
| 1838 | 1838 | return timeSeparator_; |
|---|
| … | … | |
| 1853 | 1853 | */ |
|---|
| 1854 | 1854 | public final char[] amDesignator() { |
|---|
| 1855 | | assert(amDesignator_ != null); |
|---|
| | 1855 | assert(amDesignator_ !is null); |
|---|
| 1856 | 1856 | return amDesignator_; |
|---|
| 1857 | 1857 | } |
|---|
| … | … | |
| 1871 | 1871 | */ |
|---|
| 1872 | 1872 | public final char[] pmDesignator() { |
|---|
| 1873 | | assert(pmDesignator_ != null); |
|---|
| | 1873 | assert(pmDesignator_ !is null); |
|---|
| 1874 | 1874 | return pmDesignator_; |
|---|
| 1875 | 1875 | } |
|---|
| … | … | |
| 1889 | 1889 | */ |
|---|
| 1890 | 1890 | public final char[] shortDatePattern() { |
|---|
| 1891 | | assert(shortDatePattern_ != null); |
|---|
| | 1891 | assert(shortDatePattern_ !is null); |
|---|
| 1892 | 1892 | return shortDatePattern_; |
|---|
| 1893 | 1893 | } |
|---|
| … | … | |
| 1898 | 1898 | public final void shortDatePattern(char[] value) { |
|---|
| 1899 | 1899 | checkReadOnly(); |
|---|
| 1900 | | if (shortDatePatterns_ != null) |
|---|
| | 1900 | if (shortDatePatterns_ !is null) |
|---|
| 1901 | 1901 | shortDatePatterns_[0] = value; |
|---|
| 1902 | 1902 | shortDatePattern_ = value; |
|---|
| … | … | |
| 1911 | 1911 | */ |
|---|
| 1912 | 1912 | public final char[] shortTimePattern() { |
|---|
| 1913 | | if (shortTimePattern_ == null) |
|---|
| | 1913 | if (shortTimePattern_ is null) |
|---|
| 1914 | 1914 | shortTimePattern_ = cultureData_.shortTime; |
|---|
| 1915 | 1915 | return shortTimePattern_; |
|---|
| … | … | |
| 1931 | 1931 | */ |
|---|
| 1932 | 1932 | public final char[] longDatePattern() { |
|---|
| 1933 | | assert(longDatePattern_ != null); |
|---|
| | 1933 | assert(longDatePattern_ !is null); |
|---|
| 1934 | 1934 | return longDatePattern_; |
|---|
| 1935 | 1935 | } |
|---|
| … | … | |
| 1940 | 1940 | public final void longDatePattern(char[] value) { |
|---|
| 1941 | 1941 | checkReadOnly(); |
|---|
| 1942 | | if (longDatePatterns_ != null) |
|---|
| | 1942 | if (longDatePatterns_ !is null) |
|---|
| 1943 | 1943 | longDatePatterns_[0] = value; |
|---|
| 1944 | 1944 | longDatePattern_ = value; |
|---|
| … | … | |
| 1952 | 1952 | */ |
|---|
| 1953 | 1953 | public final char[] longTimePattern() { |
|---|
| 1954 | | assert(longTimePattern_ != null); |
|---|
| | 1954 | assert(longTimePattern_ !is null); |
|---|
| 1955 | 1955 | return longTimePattern_; |
|---|
| 1956 | 1956 | } |
|---|
| … | … | |
| 1971 | 1971 | */ |
|---|
| 1972 | 1972 | public final char[] monthDayPattern() { |
|---|
| 1973 | | if (monthDayPattern_ == null) |
|---|
| | 1973 | if (monthDayPattern_ is null) |
|---|
| 1974 | 1974 | monthDayPattern_ = cultureData_.monthDay; |
|---|
| 1975 | 1975 | return monthDayPattern_; |
|---|
| … | … | |
| 1990 | 1990 | */ |
|---|
| 1991 | 1991 | public final char[] yearMonthPattern() { |
|---|
| 1992 | | assert(yearMonthPattern_ != null); |
|---|
| | 1992 | assert(yearMonthPattern_ !is null); |
|---|
| 1993 | 1993 | return yearMonthPattern_; |
|---|
| 1994 | 1994 | } |
|---|
| … | … | |
| 2009 | 2009 | */ |
|---|
| 2010 | 2010 | public final char[][] abbreviatedDayNames() { |
|---|
| 2011 | | if (abbreviatedDayNames_ == null) |
|---|
| | 2011 | if (abbreviatedDayNames_ is null) |
|---|
| 2012 | 2012 | abbreviatedDayNames_ = cultureData_.abbrevDayNames; |
|---|
| 2013 | 2013 | return abbreviatedDayNames_.dup; |
|---|
| … | … | |
| 2029 | 2029 | */ |
|---|
| 2030 | 2030 | public final char[][] dayNames() { |
|---|
| 2031 | | if (dayNames_ == null) |
|---|
| | 2031 | if (dayNames_ is null) |
|---|
| 2032 | 2032 | dayNames_ = cultureData_.dayNames; |
|---|
| 2033 | 2033 | return dayNames_.dup; |
|---|
| … | … | |
| 2049 | 2049 | */ |
|---|
| 2050 | 2050 | public final char[][] abbreviatedMonthNames() { |
|---|
| 2051 | | if (abbreviatedMonthNames_ == null) |
|---|
| | 2051 | if (abbreviatedMonthNames_ is null) |
|---|
| 2052 | 2052 | abbreviatedMonthNames_ = cultureData_.abbrevMonthNames; |
|---|
| 2053 | 2053 | return abbreviatedMonthNames_.dup; |
|---|
| … | … | |
| 2069 | 2069 | */ |
|---|
| 2070 | 2070 | public final char[][] monthNames() { |
|---|
| 2071 | | if (monthNames_ == null) |
|---|
| | 2071 | if (monthNames_ is null) |
|---|
| 2072 | 2072 | monthNames_ = cultureData_.monthNames; |
|---|
| 2073 | 2073 | return monthNames_.dup; |
|---|
| … | … | |
| 2088 | 2088 | */ |
|---|
| 2089 | 2089 | public final char[] fullDateTimePattern() { |
|---|
| 2090 | | if (fullDateTimePattern_ == null) |
|---|
| | 2090 | if (fullDateTimePattern_ is null) |
|---|
| 2091 | 2091 | fullDateTimePattern_ = longDatePattern ~ " " ~ longTimePattern; |
|---|
| 2092 | 2092 | return fullDateTimePattern_; |
|---|
| … | … | |
| 2129 | 2129 | |
|---|
| 2130 | 2130 | package char[] generalShortTimePattern() { |
|---|
| 2131 | | if (generalShortTimePattern_ == null) |
|---|
| | 2131 | if (generalShortTimePattern_ is null) |
|---|
| 2132 | 2132 | generalShortTimePattern_ = shortDatePattern ~ " " ~ shortTimePattern; |
|---|
| 2133 | 2133 | return generalShortTimePattern_; |
|---|
| … | … | |
| 2135 | 2135 | |
|---|
| 2136 | 2136 | package char[] generalLongTimePattern() { |
|---|
| 2137 | | if (generalLongTimePattern_ == null) |
|---|
| | 2137 | if (generalLongTimePattern_ is null) |
|---|
| 2138 | 2138 | generalLongTimePattern_ = shortDatePattern ~ " " ~ longTimePattern; |
|---|
| 2139 | 2139 | return generalLongTimePattern_; |
|---|
| … | … | |
| 2146 | 2146 | |
|---|
| 2147 | 2147 | private void initialize() { |
|---|
| 2148 | | if (longTimePattern_ == null) |
|---|
| | 2148 | if (longTimePattern_ is null) |
|---|
| 2149 | 2149 | longTimePattern_ = cultureData_.longTime; |
|---|
| 2150 | | if (shortDatePattern_ == null) |
|---|
| | 2150 | if (shortDatePattern_ is null) |
|---|
| 2151 | 2151 | shortDatePattern_ = cultureData_.shortDate; |
|---|
| 2152 | | if (longDatePattern_ == null) |
|---|
| | 2152 | if (longDatePattern_ is null) |
|---|
| 2153 | 2153 | longDatePattern_ = cultureData_.longDate; |
|---|
| 2154 | | if (yearMonthPattern_ == null) |
|---|
| | 2154 | if (yearMonthPattern_ is null) |
|---|
| 2155 | 2155 | yearMonthPattern_ = cultureData_.yearMonth; |
|---|
| 2156 | | if (amDesignator_ == null) |
|---|
| | 2156 | if (amDesignator_ is null) |
|---|
| 2157 | 2157 | amDesignator_ = cultureData_.am; |
|---|
| 2158 | | if (pmDesignator_ == null) |
|---|
| | 2158 | if (pmDesignator_ is null) |
|---|
| 2159 | 2159 | pmDesignator_ = cultureData_.pm; |
|---|
| 2160 | | if (firstDayOfWeek_ == -1) |
|---|
| | 2160 | if (firstDayOfWeek_ is -1) |
|---|
| 2161 | 2161 | firstDayOfWeek_ = cultureData_.firstDayOfWeek; |
|---|
| 2162 | 2162 | if (calendarWeekRule_ == -1) |
|---|
| r3337 |
r3349 |
|
| 860 | 860 | *******************************************************************************/ |
|---|
| 861 | 861 | public char[] message() { |
|---|
| 862 | | if (msg == null && next != null) { |
|---|
| | 862 | if (msg is null && next !is null) { |
|---|
| 863 | 863 | return next.msg; |
|---|
| 864 | 864 | } |
|---|
| … | … | |
| 1544 | 1544 | *******************************************************************************/ |
|---|
| 1545 | 1545 | public void setFeature(Ch[] name, bool value) { |
|---|
| 1546 | | if (parent != null) { |
|---|
| | 1546 | if (parent !is null) { |
|---|
| 1547 | 1547 | parent.setFeature(name, value); |
|---|
| 1548 | 1548 | } |
|---|
| … | … | |
| 1567 | 1567 | *******************************************************************************/ |
|---|
| 1568 | 1568 | public bool getFeature(Ch[] name) { |
|---|
| 1569 | | if (parent != null) { |
|---|
| | 1569 | if (parent !is null) { |
|---|
| 1570 | 1570 | return parent.getFeature(name); |
|---|
| 1571 | 1571 | } |
|---|
| … | … | |
| 1590 | 1590 | *******************************************************************************/ |
|---|
| 1591 | 1591 | public void setProperty(Ch[] name, Object value) { |
|---|
| 1592 | | if (parent != null) { |
|---|
| | 1592 | if (parent !is null) { |
|---|
| 1593 | 1593 | parent.setProperty(name, value); |
|---|
| 1594 | 1594 | } |
|---|
| … | … | |
| 1611 | 1611 | *******************************************************************************/ |
|---|
| 1612 | 1612 | public Object getProperty(Ch[] name) { |
|---|
| 1613 | | if (parent != null) { |
|---|
| | 1613 | if (parent !is null) { |
|---|
| 1614 | 1614 | return parent.getProperty(name); |
|---|
| 1615 | 1615 | } |
|---|
| … | … | |
| 1740 | 1740 | *******************************************************************************/ |
|---|
| 1741 | 1741 | public InputStream resolveEntity(Ch[] publicId, Ch[] systemId) { |
|---|
| 1742 | | if (entityResolver != null) { |
|---|
| | 1742 | if (entityResolver !is null) { |
|---|
| 1743 | 1743 | return entityResolver.resolveEntity(publicId, systemId); |
|---|
| 1744 | 1744 | } |
|---|
| … | … | |
| 1759 | 1759 | public void setDocumentLocator(Locator locator) { |
|---|
| 1760 | 1760 | this.locator = locator; |
|---|
| 1761 | | if (saxHandler != null) { |
|---|
| | 1761 | if (saxHandler !is null) { |
|---|
| 1762 | 1762 | saxHandler.setDocumentLocator(locator); |
|---|
| 1763 | 1763 | } |
|---|
| … | … | |
| 1772 | 1772 | *******************************************************************************/ |
|---|
| 1773 | 1773 | public void startDocument() { |
|---|
| 1774 | | if (saxHandler != null) { |
|---|
| | 1774 | if (saxHandler !is null) { |
|---|
| 1775 | 1775 | saxHandler.startDocument(); |
|---|
| 1776 | 1776 | } |
|---|
| … | … | |
| 1785 | 1785 | *******************************************************************************/ |
|---|
| 1786 | 1786 | public void endDocument() { |
|---|
| 1787 | | if (saxHandler != null) { |
|---|
| | 1787 | if (saxHandler !is null) { |
|---|
| 1788 | 1788 | saxHandler.endDocument(); |
|---|
| 1789 | 1789 | } |
|---|
| … | … | |
| 1800 | 1800 | *******************************************************************************/ |
|---|
| 1801 | 1801 | public void startPrefixMapping(Ch[] prefix, Ch[] uri) { |
|---|
| 1802 | | if (saxHandler != null) { |
|---|
| | 1802 | if (saxHandler !is null) { |
|---|
| 1803 | 1803 | saxHandler.startPrefixMapping(prefix, uri); |
|---|
| 1804 | 1804 | } |
|---|
| … | … | |
| 1814 | 1814 | *******************************************************************************/ |
|---|
| 1815 | 1815 | public void endPrefixMapping(Ch[] prefix) { |
|---|
| 1816 | | if (saxHandler != null) { |
|---|
| | 1816 | if (saxHandler !is null) { |
|---|
| 1817 | 1817 | saxHandler.endPrefixMapping(prefix); |
|---|
| 1818 | 1818 | } |
|---|
| … | … | |
| 1832 | 1832 | *******************************************************************************/ |
|---|
| 1833 | 1833 | public void startElement(Ch[] uri, Ch[] localName, Ch[] qName, Attribute[] atts) { |
|---|
| 1834 | | if (saxHandler != null) { |
|---|
| | 1834 | if (saxHandler !is null) { |
|---|
| 1835 | 1835 | saxHandler.startElement(uri, localName, qName, atts); |
|---|
| 1836 | 1836 | } |
|---|
| … | … | |
| 1849 | 1849 | *******************************************************************************/ |
|---|
| 1850 | 1850 | public void endElement(Ch[] uri, Ch[] localName, Ch[] qName) { |
|---|
| 1851 | | if (saxHandler != null) { |
|---|
| | 1851 | if (saxHandler !is null) { |
|---|
| 1852 | 1852 | saxHandler.endElement(uri, localName, qName); |
|---|
| 1853 | 1853 | } |
|---|
| … | … | |
| 1863 | 1863 | *******************************************************************************/ |
|---|
| 1864 | 1864 | public void characters(Ch ch[]) { |
|---|
| 1865 | | if (saxHandler != null) { |
|---|
| | 1865 | if (saxHandler !is null) { |
|---|
| 1866 | 1866 | saxHandler.characters(ch); |
|---|
| 1867 | 1867 | } |
|---|
| … | … | |
| 1879 | 1879 | *******************************************************************************/ |
|---|
| 1880 | 1880 | public void ignorableWhitespace(Ch ch[]) { |
|---|
| 1881 | | if (saxHandler != null) { |
|---|
| | 1881 | if (saxHandler !is null) { |
|---|
| 1882 | 1882 | saxHandler.ignorableWhitespace(ch); |
|---|
| 1883 | 1883 | } |
|---|
| … | … | |
| 1894 | 1894 | *******************************************************************************/ |
|---|
| 1895 | 1895 | public void processingInstruction(Ch[] target, Ch[] data) { |
|---|
| 1896 | | if (saxHandler != null) { |
|---|
| | 1896 | if (saxHandler !is null) { |
|---|
| 1897 | 1897 | saxHandler.processingInstruction(target, data); |
|---|
| 1898 | 1898 | } |
|---|
| … | … | |
| 1908 | 1908 | *******************************************************************************/ |
|---|
| 1909 | 1909 | public void skippedEntity(Ch[] name) { |
|---|
| 1910 | | if (saxHandler != null) { |
|---|
| | 1910 | if (saxHandler !is null) { |
|---|
| 1911 | 1911 | saxHandler.skippedEntity(name); |
|---|
| 1912 | 1912 | } |
|---|
| … | … | |
| 1925 | 1925 | *******************************************************************************/ |
|---|
| 1926 | 1926 | public void warning(SAXException e) { |
|---|
| 1927 | | if (errorHandler != null) { |
|---|
| | 1927 | if (errorHandler !is null) { |
|---|
| 1928 | 1928 | errorHandler.warning(e); |
|---|
| 1929 | 1929 | } |
|---|
| … | … | |
| 1939 | 1939 | *******************************************************************************/ |
|---|
| 1940 | 1940 | public void error(SAXException e) { |
|---|
| 1941 | | if (errorHandler != null) { |
|---|
| | 1941 | if (errorHandler !is null) { |
|---|
| 1942 | 1942 | errorHandler.error(e); |
|---|
| 1943 | 1943 | } |
|---|
| … | … | |
| 1953 | 1953 | *******************************************************************************/ |
|---|
| 1954 | 1954 | public void fatalError(SAXException e) { |
|---|
| 1955 | | if (errorHandler != null) { |
|---|
| | 1955 | if (errorHandler !is null) { |
|---|
| 1956 | 1956 | errorHandler.fatalError(e); |
|---|
| 1957 | 1957 | } |
|---|
| … | … | |
| 1970 | 1970 | *******************************************************************************/ |
|---|
| 1971 | 1971 | private void setupParse() { |
|---|
| 1972 | | if (parent == null) { |
|---|
| | 1972 | if (parent is null) { |
|---|
| 1973 | 1973 | throw new Exception("No parent for filter"); |
|---|
| 1974 | 1974 | } |
|---|
| r3256 |
r3349 |
|
| 390 | 390 | bool rtn = false; |
|---|
| 391 | 391 | if (key) |
|---|
| 392 | | rtn = (key in _args) != null; |
|---|
| | 392 | rtn = (key in _args) !is null; |
|---|
| 393 | 393 | return rtn; |
|---|
| 394 | 394 | } |
|---|
Download in other formats:
|
 |
 |
|
 |
Copyright © 2006-2008 Tango. All Rights Reserved. | Page Width:
Static or
Dynamic