Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

phobos-devel-2.107.1-2.1 RPM for x86_64

From OpenSuSE Tumbleweed for x86_64

Name: phobos-devel Distribution: openSUSE Tumbleweed
Version: 2.107.1 Vendor: openSUSE
Release: 2.1 Build date: Sat Mar 16 16:57:55 2024
Group: Development/Libraries/Other Build host: reproducible
Size: 20009818 Source RPM: dmd-2.107.1-2.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://dlang.org/
Summary: Development files for the D standard library
Phobos is the standard library for the D Programming Language.

This package contains the includes needed to compile programs against Phobos.

Provides

Requires

License

BSL-1.0

Changelog

* Sat Mar 16 2024 Andrea Manzini <andrea.manzini@suse.com>
  - Added rdmd run/build tool ( https://dlang.org/rdmd.html )
* Tue Mar 12 2024 Andrea Manzini <andrea.manzini@suse.com>
  - Update to version 2.107.1
    * DMD Compiler regression fixes
    - Bugzilla 20802: [REG2.088.0] Link failure with writefln
    - Bugzilla 24371: [REG 2.104] String array concatenation does not respect operator precedence
    * DMD Compiler bug fixes
    - Bugzilla 20297: ld: warning: no platform load command found for macOS
    - Bugzilla 21047: Linker error: GOT load reloc does not point to a movq instruction
    - Bugzilla 22556: Invalid GOT load reloc with -O on MacOS
    - Bugzilla 23517: dmd with -g flag fails to link on macOS with unaligned pointer
    - Bugzilla 24137: Link failure on macOS with symbol count from symbol table and dynamic symbol table differ
    - Bugzilla 24365: ICE when printing 'showCtfeContext' error
    - Bugzilla 24370: static array values in static AA initialise to dynamic arrays
    - Bugzilla 24399: Link failure on MacOS with address=0x0 points to section(2) with no content in config_a68_4c3.o
    - Bugzilla 24409: DMD crash for CTFE in stompOverlappedFields
    - Bugzilla 24422: ImportC: ICE: Segfault in cparseFunctionDefinition
  - Update to version 2.107.0
    * Compiler changes
    - A string literal as an assert condition is deprecated
    - Unrecognized pragmas are no longer an error, but instead simply ignored
    - Added @standalone for module constructors
    - _d_newarray{mTX,miTX,OpT} are converted to a single template: _d_newarraymTX
    * Runtime changes
    - Using an invalid MemoryOrder for core.atomic operations are now rejected at compile time
    * Library changes
    - isForwardRange now takes an optional element type.
  - Update to version 2.106.1
    * DMD Compiler regression fixes
    - Bugzilla 22212: dmd version has -dirty suffix on windows
    * DMD Compiler bug fixes
    - Bugzilla 22483: DMD generates invalid string sections that work by coincidence
    - Bugzilla 24281: Segfault with missing field after named argument
    - Bugzilla 24283: [SIMD][CODEGEN] Bad codegen with and not + AVX2 registers
  - Update to version 2.106.0
    * 2.106.0 comes with 17 major changes and 65 fixed Bugzilla issues. For
      full changelog see https://dlang.org/changelog/2.106.0.html
* Fri Nov 03 2023 Andrea Manzini <andrea.manzini@suse.com>
  - Update to versione 2.105.3
    * DMD Compiler regression fixes:
    - Bugzilla 24171: [REG 2.100] Segfault compiling an empty ddoc file
    - Bugzilla 24188: ICE (Illegal instruction) with missing imported symbol
    * DMD Compiler bug fixes:
    - Bugzilla 23686: template instance reused with default alias arg
    - Bugzilla 23865: duplicate alias not detected
  - Changes from version 2.105.2:
    * DMD Compiler regression fixes
    - Bugzilla 24109: [REG2.103] 'need this' when invoking outer method from inner method
    - Bugzilla 24110: [REG2.104] Array comparison lowering apparently not handled properly in __traits(compiles)
    - Bugzilla 24118: ICE / regression from 2.103.1 - segfault on CTFE only code in 2.104.2 and 2.105.0
    - Bugzilla 24144: [REG2.105] Silent file name index overflow
    * DMD Compiler bug fixes
    - Bugzilla 24139: 'this' corruption in extern(C++) dtor when destructing via TypeInfo_Struct
    * Phobos bug fixes
    - Bugzilla 24140: Int128.opBinary [+-*/%&|^] with negative long arguments gives wrong answers
  - Changes from version 2.105.1:
    * A function with enum storage class is now deprecated, not an error
    * for detail and bugfixes see https://dlang.org/changelog/2.105.1.html#bugfix-list
  - Changes from version 2.105.0:
    * Compiler changes
    - Assignment-style syntax is now allowed for alias this
    - Catch clause must take only const or mutable exceptions
    - Functions can no longer have enum storage class
    - Overloading extern(C) functions is now an error
    - Deprecation phase ended for access to private method when overloaded with public method.
    - Added predefined version identifier VisionOS
    * Runtime changes
    - Linux input header translations were added to druntime
    - Integration with the Valgrind memcheck tool has been added to the garbage collector
    * Library changes
    - Better static assert messages for std.algorithm.iteration.permutations
    - Added std.system.instructionSetArchitecture and std.system.ISA
    * Dub changes
    - Exposed --d-versions CLI flag
    * for details see https://dlang.org/changelog/2.105.0.html#bugfix-list
* Thu Jul 20 2023 Matthias Eliasson <elimat@opensuse.org>
  - Update to version 2.104.2
    * DMD Compiler regression fixes:
    - [REG2.102] Cannot use traits(getAttributes) with overloaded template
    - ImportC: ICE on nested C initializer 2
    * DMD Compiler bug fixes:
    - Segmentation fault on mixin template + using unknown type
    - "alias this" not properly dereferenced when the object being looked up is a field of a type
    - error: instantiated from here: maxElement!("a.a", A[])
    * Druntime regression fixes:
    - "Warning: cannot inline function" in core.lifetime
  - Changes from version 2.204.1
    * DMD Compiler regression fixes:
    - [REG2.101.0] Appending deprecated structs in deprecated function causes deprecation message
    - [REG 2.103.0] ICE: dip1021 memory corruption
    - ICE on failed alias this attempt on pointer expression
    - [REG 2.103.0] address of a __traits(getOverloads) item is not converted to a delegate anymore
    * DMD Compiler bug fixes:
    - Segfault for function contract -preview=dip1021
    - ICE: Invalid array access for invalid interface definition
    - ImportC: ICE on nested C initializer
    - segfault when printing scope inference failure
    - ICE: dip1021 asserts on typeof(null) parameter
    * Phobos regression fixes:
    - std.range.slide fails in dmd-2.104.0
    - std.algorithm.maxElement no longer works with array of BigInt
  - Changes from version 2.104.0
    * Compiler changes:
    - Better error message when attribute inference fails down the call stack
    - Using ; as an empty statement has been turned into an error
    - Using in parameters with non extern(D)/extern(C++) functions is deprecated
    - in ref on parameters has been deprecated in favor of -preview=in
    - Throwing qualified objects is now deprecated
    - User Defined Attributes now parse Template Arguments
    * Library changes:
    - Better static assert messages for std.algorithm.comparison.clamp
    - std.typecons.Rebindable now supports all types
    * Tools changes:
    - rdmd supports -shared
    * Dub changes:
    - Add new properties 'cSourcePaths' and 'cImportPaths' to SDL/JSON
    - The way packages are stored internally has changed
  - Changes from version 2.103.1
    * Compiler changes:
    - Deprecate invalid special token sequences inside token strings
    * DMD Compiler regression fixes:
    - Header generation wrongfully outputs constructor bodies
    - Typing invalid mnemonic in asm{} block segfault
    * DMD Compiler bug fixes:
    - Segmentation fault in CppMangleVisitor.headOfType
    - Assertion failure in CppMangleVisitor.template_args
    - Segfault for malformed static if in imported template
    * Druntime regression fixes:
    - [REG 2.103] Throwing while in a deep callstack causes memory corruption
* Sun Apr 16 2023 Bjørn Lie <bjorn.lie@gmail.com>
  - Update to version 2.103.0
    * Compiler changes:
    - Add __check(assign-expression) to ImportC
    - Alias this for classes is deprecated
    - -preview=dip25 has been enabled by default
    - export int a; now generates dllexport instead of dllimport
    - Deprecate traits(isVirtualFunction) and
      traits(getVirtualFunctions)
    * Library changes:
    - Unicode grapheme walking updated to conform to Unicode
      version 15
    - Better static assert messages for
      std.algorithm.iteration.joiner
    - Better static assert messages for std.algorithm.sorting.sort
    * Dub changes: The --color argument now accepts values auto,
      never, always
  - Changes from version 2.102.2:
    * 6 fixed Bugzilla issues.
  - Changes from version 2.102.1:
    * Dub changes:
    - Reverted v1.31.0 working directory change when using dub run
    - -root=<value>
    - Path dependencies of path-based sub-packages have been fixed
  - Changes from version 2.102.0:
    * Compiler changes:
    - A missed case of conflicting extern (D) @system function
      definitions has been deprecated
    - Deprecate the ability to call __traits(getAttributes) on
      overload sets
    - Deprecate non-empty for statement Increment clause with no
      effect
    - Array literals assigned to scope array variables can now be
      allocated on the stack
    - static assert now supports multiple message arguments
    - -preview=systemVariables has been added
    * Runtime changes: The default Throwable.TraceInfo generation now
      is @nogc.
    * Library changes:
    - Single- and double-precision implementations for log function
      families
    - The Unicode property "C" aka "Other" has had the wrong
      properties associated with it
    - Unicode table generator is now in Phobos, tables are updated
      to version 15
    - std.typecons.Unique now calls destroy on struct types
    * Installer changes:
    - Update the bundled VisualD package
    - Prefer 64 bit over 32 bit DMD on Windows 64 bit.
    * Dub changes:
    - Binary output will now be in a central cache
    - DUB API breaking change: Package.metadataCache setter and
      getter have been removed
  - Changes from version 2.101.2:
    * 16 fixed Bugzilla issues.
  - Changes from version 2.101.1:
    * 11 fixed Bugzilla issues.
* Thu Dec 01 2022 Fabian Vogt <fvogt@suse.com>
  - Bootstrap using gdmd instead of prebuilt binaries
* Wed Nov 16 2022 Chris Josten <chris+suse@netsoj.nl>
  - Build using the build.d script, as opposed to the deprecated
    posix.mak
  - Remove dmd_use_tarball_bootstrap.diff patch as it is no longer
    needed
  - Update to version 2.101.0
    * Compiler changes
    * Add bit fields to D
    * Added __traits(classInstanceAlignment)
    * Relaxed pragma(crt_constructor) / pragma(crt_destructor)
    linkage check
    * Add predefined version D_Optimized when compiling with -O
    * Throwing from contracts of nothrow functions has been
    deprecated
    * Using integers for version or debug conditions has been
    deprecated
    * Print deprecations for scope pointer errors
    * Improvements for the C++ header generation
    * -preview=fixImmmutableConv has been added
    * Returning a discarded void value from a function is now
    deprecated
    * ImportC now recognizes the typeof(...) operator
    * Removed the -transition=markdown and -revert=markdown
    switches
    * new can now allocate an associative array
    * -preview=in can now be used with extern(C++), disabled for
    other non-D linkage
    * The shortened method syntax is now available by default.
    * Source files may no longer contain Unicode directionality
    overrides
    * Runtime changes
    * Added avx512f detection to core.cpuid
    * --DRT-oncycle=deprecate is removed
    * Posix (excl. Darwin): Switch default GC signals from
    SIGUSR1/2 to SIGRTMIN/SIGRTMIN+1
    * Library changes
    * Added SafeRefCounted, that can be used in @safe with
    - preview=dip1000.
    * Move logger out of experimental.
    * remove std.experimental.logger's capability to set the minimal
    LogLevel at compile time
    * Change std.experimental.logger.core.sharedLog to return
    shared(Logger)
    * std.experimental.typecons has been removed
    * std.digest.digest has been removed
    * std.xml has been removed
    * std.socket.Socket methods now accept only scope arrays.
    * Add custom fill value to std.outbuffer.OutBuffer class
  - Update to version 2.100.2
    * Compiler changes
    * scope(failure) blocks that contain return statements are
    now deprecated
  - Update to version 2.100.1
    * Compiler changes
    * scope(failure) blocks that contain return statements are
    now deprecated
  - Update to version 2.100.0
    * Compiler changes
    * End deprecation period for using alias this for partial
    assignment.
    * The deprecation period for D1-style operators has ended.
    * scope as a type constraint on class, struct, and enum
    declarations is deprecated.
    * The deprecation period of unannotated asm blocks has been
    ended.
    * The deprecation period of the delete keyword has been ended.
    * Improvements for the C++ header generation
    * The deprecation period for scope as a type constraint on
    interface declarations has ended.
    * The inout attribute no longer implies the return attribute
    * Support contract invariant version identifier.
    * Implement DIP 1038: @mustuse
    * Added .tupleof property for static arrays
    * Usage of this and super as types has been removed
    * A missed case of switch case fallthrough has been deprecated
    * Library changes
    * New function bind in std.functional
    * Nullable in std.typecons can now act as a range
    * Zlib updated to 1.2.12
    * Tools changes
    * rdmd now supports specifying the D compiler using the RDMD_DMD
    environment variable
  - Update to version 2.099.1
    * Compiler changes
    * Special case for __traits(parameters) in foreach loops
    was removed
    * Library changes
    * std.experimental.logger default level changed to info instead
    of warning
  - Update to version 2.099.0
    * Compiler changes
    * When ref scope return attributes are used on a parameter,
    and return scope appears, the return applies to the scope,
    not the ref.
    * __traits(parameters) has been added to the compiler.
    * Add ability to import modules to ImportC
    * Casting between compatible sequences
    * New command line switch -vasm which outputs assembler code
    per function
    * The '-preview=intpromote' switch is now set by default.
    * -m32 now produces MS Coff objects when targeting windows
    * Ignore unittests in non-root modules
    * main can now return type noreturn and supports return inference
    * Falling through switch cases is now an error
    * Throw expression as proposed by DIP 1034 have been implemented
    * Added __traits(initSymbol) to obtain aggregate initializers
    * Runtime changes
    * Add support for @safe class opEquals
    * Library changes
    * Move checkedint out of experimental.
    * chunkBy @safe with forward ranges and splitWhen fully @safe
    * std.csv can now optionally handle csv files with variable
    number of columns.
    * Change default log level for std.experimental.logger to
    LogLevel.warning
    * std.conv.to accepts std.typecons tuples
* Mon Dec 27 2021 Chris Josten <chris+suse@netsoj.nl>
  - Update to version 2.098.1
    * DMD Compiler regression fixes
    * [REG2.084.0] Bogus slice assignment in recursive CTFE call
    * spurious deprecation warnings on function calls within with(X)
      blocks while X has a deprecated alias this target
    * OpDispatch does not work for structs with constructor and
      destructor
    * error in static struct initialization causes wrong position for
      subsequent members, producing extra errors
    * alias this returns 'null' for ref types when put into array
      initializer
    * Rebindable does not work when class has alias this to inout
      property
    * A case of compiler crash when using auto ref
    * Spurious "non-constant expression" error with immutable
      constructors
    * Compiler segfault on static array in a struct at CTFE
    * [REG2.097] Error: mismatched function return type inference of
      void and noreturn
    * Compiler crash when attempting to assign to function
    * [REG 2.098-rc.2] -checkaction=context of a shared type with an
      opCast fails to compile
    * CTFE fails to iterate over associative array previously indexed
      with implicit conversion to enum base type
    * [REG2.094] function with tuple parameter with default argument
      fails if there's a qualifier
    * [REG2.098] Apparent CTFE regression wrt. alias this
    * Invalid error message for void return from non-void functions
    * importC: incomplete array type must have initializer
    * Invalid duplicate case error when the switched value has errors
    * Segfault for function literal in struct initializer with
      previous errors
    * wrong deprecation about empty statement
    * [REG 2.098] Error: function 'core.stdc.stdio.vfprintf'
      'pragma(printf)' functions must be
      'extern(C) int vfprintf([parameters...], const(char)*, va_list)'
    * more arguments than fields allowed in struct constructor
    * importC: Error: undefined reference to 'parameter' when no
      parameter names in forward declaration
    * importC: Error: variable 'var' extern symbols cannot have
      initializers
    * importC: Segmentation fault indexing global array at run-time
    * ICE on overloaded constructors
    * DMD Compiler bug fixes
    * ReturnStatement[CallExp(DotVarExp)]: Corrupted runtime on missed
      manifest constant propagation
    * Wrong cast of float constant to bool
    * 'export' keyword on OSX/Linux globals causing segfaults
    * [ICE] AssertError@dmd/optimize.d(691): Assertion failure
    * Internal compiler assertion
    * ICE (illegal instruction) with bad code
    * cod1: Assertion failure for noreturn parameter
    * ice for global / tls variable of type noreturn
    * ice when dmd computes the alignment of an union containing a
      noreturn
    * importC: Parser accepts arrays with incomplete element types
    * ImportC: #pragma pack is not implemented
    * Link error for virtual destructor of C++ class in DLL
    * ImportC: error parsing compound literal with more than one value
      at function scope.
    * importC: Error: C non-array initializer not supported yet
    * importC: Error: cannot use non-constant CTFE pointer in an
      initializer
    * Wrong overload selected for @safe delegate
    * noreturn functions are allowed to return normally
    * importC: Error: unknown, when compiling source with non-constant
      initializer.
    * importC: Error: static variable cannot be read at compile time
    * importC: Error: unknown, when compiling source with typedef'd
      initializer
    * importC: Error: can't subtract '__tag2[1]' from pointer
    * importC: Error: cannot pass argument '0' of type 'int' to
      parameter 'const(char)*'
    * importC: Error: cannot modify 'const' expression '(*s).field'
    * importC: Error: 'switch' statement without a 'default'; use
      'final switch' or add 'default: assert(0);' or add
      'default: break;'
    * importC: Error: cannot implicitly convert expression of type
      'extern (C) int(int a)' to 'const(extern (C) int function(int))'
    * importC: [ICE] Error: struct no size because of forward reference
    * importC: Error: cannot implicitly convert expression of type
      'const(char*)' to 'char*'
    * importC: Error: array index 0 is out of bounds
    * ImportC: parse gnu attributes after a function parameter
    * importC: static variables/functions emit global symbols
    * ImportC: casting result of postfix operator on a parenthesized
      expression to a typedef’d type is parsed incorrectly
    * ImportC: Lots of errors when compiling tomlc99
    * ImportC: address of member of struct can’t be taken at compile
      time.
    * [REG 2.093][ICE] Bus error at dmd/lexer.d:398
    * Explicit cast between classes incorrectly goes through
      'alias this' inside CTFE
    * importC: D name mangling applied to forward declaration of
      function inside function
    * ImportC: const pointer (not pointer to const) is treated as
      transitive const
    * importC: function 'func' conflicts with function 'func' when
      using static in forward declaration
    * importC: float literal should support leading zero
    * ImportC: extra semicolon not allowed outside of functions
    * DMD compiler errors on Illumos/Solaris
    * ImportC: cannot implicitly convert expression S(0) of type S to
      int in an S array
    * ImportC: decay of function to typedef'd const function pointer
      causes ICE.
    * importC: Error: undefined reference to '__builtin_va_start' and
      '__builtin_va_end'
    * importC: Debug information for C sources have DW_AT_language set
      to D.
    * importC: Segmentation fault initializing va_list with
      __builtin_va_start
    * importC: Error: cannot convert string literal to 'void*'
    * Phobos regression fixes
    * [REG2.069] TaskPool.reduce fails to compile "cannot get frame
      pointer to D main"
    * Phobos bug fixes
    * OpenBSD: Add OpenBSD to std/system.d OS list
    * Array!T.init.data crashes
    * Phobos enhancements
    * data should work with const/immutable Array's
    * Nullable is not copyable when templated type has elaborate copy
      ctor
    * std.traits.fqnType is missing support for typeof(null)
    * Druntime regression fixes
    * [REG2.091] Wrong file read during exception stringification
      leads to SIGBUS
    * std.meta.allSatisfy in mutual recursion classes cannot be
      compiled
    * core.demangle does not support noreturn
    * Druntime bug fixes
    * Unify polyImpl implementations
    * Remove useless conditional assignment of DISABLED_TESTS in
      posix.mak
    * Druntime enhancements
    * Explicitly cast backtrace results to int
  - Update to version 2.098.0
    * Compiler changes
    * Add Alias Assignment
    * Accessing C Declarations From D Via ImportC Compiler
    * Using the syntax (args) => {} now triggers a deprecation message
    * Improvements for the C++ header generation
    * -preview=dtorfields is now enabled by default
    * Add .min, .max, etc. properties for vector types
    * Using a mutable variable as a switch case now triggers an error
    * Out of bounds array access now gives a better error message
    * Class allocators have been removed from the language
    * Initialization of immutable global data from static this now
      triggers an error
    * Add -target=<triple> for operating system, c, and c++ runtime
      cross compilation
    * Default initialization of union field that isn't the first member
      now triggers an error
    * Runtime changes
    * TypeInfo names for aggregates are fully qualified and hence
      unique now
    * A concurrent GC for Posix systems
    * Improve POSIX imports
    * Library changes
    * New function isValidCharacter in std.utf
    * Dub changes
    * Added support for environment variables to use compilation and
      run (or test) option to the dub settings file and
      dub.json/dub.sdl.
* Tue Jun 08 2021 Ferdinand Thiessen <rpm@fthiessen.de>
  - Update to version 2.097.0
    * Compiler changes
    * Deprecation period for ambiguous ternary expressions has ended
    * Usage of the body keyword has been deprecated
    * Deprecate a case of using fully-qualified names to bypass imports
    * Explicit package visibility attribute is now always applied to
      new scopes
    * pragma(mangle) can now be applied to aggregates
    * Complex and imaginary types are now deprecated
    * while (auto n = expression) is now supported
    * Library changes
    * Centering formatted output.
    * AllImplicitConversionTargets replaces ImplicitConversionTargets
    * Formatting integers with %e, %f, %g and %a is now possible.
    * Implementation of pow(f, -2) and f ^^ -2 changed
    * Deprecate std.format : enforceValidFormatSpec
    * Deprecate std.format : formatElement
    * Deprecate std.format : unformatElement
    * FieldnameTuple now returns an empty tuple for interfaces
    * Fields (formerly FieldTypeTuple) now returns an empty
      tuple for interfaces
    * Floating point numbers can be formatted at compile time
    * Formatting floating point numbers don't allocate with the
      GC anymore.
    * Some reals will be downcast to double when used with
      std.format.
    * std.typecons.Nullable: Remove deprecated alias get this.
    * Documentation of std.format has been completely reworked.
    * Module std.format has been split into smaller modules
    * Module std.math has been split into smaller modules
    * splitWhen added to std.algorithm.iteration
    * The old benchmarking functionality in std.datetime has been
      removed.
    * std.exception.enforceEx has been removed.
    * New module: std.sumtype
    * std.range.Transposed: Remove deprecated member save
    * Dub changes
    * Added support for low memory compilation option to the dub
      settings file.
* Mon May 17 2021 Ferdinand Thiessen <rpm@fthiessen.de>
  - Update to version 2.096.1
    * Runtime changes:
    * Variables suspendSignalNumber and resumeSignalNumber are now
      private
    * The druntime option callStructDtorsDuringGC has been removed
    * Experimental llvm-libunwind based backtrace printing was added
    * Library changes
    * Return the number of characters consumed by std.conv.parse
    * Deprecate std.stdio.getdelim and std.stdio.getline
    * Add integer conversions in JSONValue.get
    * Deprecate std.math : approxEqual
    * Compiler changes
    * Deprecate bypassing of symbol visibility when doing overload
      resolution
    * Deprecation triggered inside of templates now show instantiation
      trace
    * Improvements for the C++ header generation
    * Diagnostics for conflicting function definitions within a module
    * extern(Pascal) has been removed
    * The compiler now accepts -extern-std=c++20
    * C++ compability standard now c++11 by default
    * Add -preview=inclusiveincontracts: in contracts must be an
      explicit superset of the parent in contracts.
    * Add support for Objective-C protocols
    * Allow any compile-time argument in pragma(inline)
    * Add __traits(getCppNamespaces, symbol) to retrieve the C++
      namespaces a symbol resides in.
    * DMD Compiler regressions / bugs:
    * printf check does not recognize GNU extensions
    * Function alias reported as conflicting function
    * Slice assignment segmentation fault
    * ssignment inside assert accepted if -checkaction=context
      is given
    * Struct dtor is called twice if struct is created inside
      ternary operator
    * Mangling problem wrt. backrefs and function types
    * build.d install fails, can't find dmd.conf
    * Constructor flow analysis doesn't understand unions
    * Confusing error message for CTFE pointer in static initializer
    * checkaction=context creates temporary of type void
    * Overload selection ignores slice
    * -preview=rvaluerefparam does not work with template deduction
    * CTFE doesn't call base class destructor for extern(D) classes
    * Wrong ParameterStorageClass when -preview=in is used
    * Phobos enhancements / regression fixes:
    * std.process.browse does not work with URLs 256 characters
      or longer
    * std.regex performance regression (additional GC allocation)
    * Specifying null as bitfields variable name now fails
    * avoid quadratic template expansion in constraints of multiple
      search term versions of std.algorithm.searching.startsWith & endsWith
    * casting std.BigInts to built-in floating point types
      doesn't work without -preview=dip1000
    * std.algorithm.mutation.copy fails on overlapping arrays if
      the source array's pointer is less than the destination
      array's pointer
    * std.experimental.checkedint opBinaryRight with integer
      left-hand side does not compile for any operators
    * std.typecons.ReplaceType does not work for in parameters
    * Deprecated Nullable.get warning with Appenders
    * Druntime bugs / regression fixes:
    * std.conv.emplace not usable in betterC - 2.096
    * casWeak is not implemented
    * joining a detached thread results in segfault.
    * core.atomic.atomicFetchSub for pointers incorrectly calls
      wrong function from core.internal.atomic

Files

/usr/include/dlang
/usr/include/dlang/dmd
/usr/include/dlang/dmd/__builtins.di
/usr/include/dlang/dmd/core
/usr/include/dlang/dmd/core/atomic.d
/usr/include/dlang/dmd/core/attribute.d
/usr/include/dlang/dmd/core/bitop.d
/usr/include/dlang/dmd/core/builtins.d
/usr/include/dlang/dmd/core/checkedint.d
/usr/include/dlang/dmd/core/cpuid.d
/usr/include/dlang/dmd/core/demangle.d
/usr/include/dlang/dmd/core/exception.d
/usr/include/dlang/dmd/core/factory.d
/usr/include/dlang/dmd/core/gc
/usr/include/dlang/dmd/core/gc/config.d
/usr/include/dlang/dmd/core/gc/gcinterface.d
/usr/include/dlang/dmd/core/gc/registry.d
/usr/include/dlang/dmd/core/int128.d
/usr/include/dlang/dmd/core/internal
/usr/include/dlang/dmd/core/internal/abort.d
/usr/include/dlang/dmd/core/internal/array
/usr/include/dlang/dmd/core/internal/array/appending.d
/usr/include/dlang/dmd/core/internal/array/arrayassign.d
/usr/include/dlang/dmd/core/internal/array/capacity.d
/usr/include/dlang/dmd/core/internal/array/casting.d
/usr/include/dlang/dmd/core/internal/array/comparison.d
/usr/include/dlang/dmd/core/internal/array/concatenation.d
/usr/include/dlang/dmd/core/internal/array/construction.d
/usr/include/dlang/dmd/core/internal/array/duplication.d
/usr/include/dlang/dmd/core/internal/array/equality.d
/usr/include/dlang/dmd/core/internal/array/operations.d
/usr/include/dlang/dmd/core/internal/array/utils.d
/usr/include/dlang/dmd/core/internal/atomic.d
/usr/include/dlang/dmd/core/internal/attributes.d
/usr/include/dlang/dmd/core/internal/backtrace
/usr/include/dlang/dmd/core/internal/backtrace/dwarf.d
/usr/include/dlang/dmd/core/internal/backtrace/elf.d
/usr/include/dlang/dmd/core/internal/backtrace/handler.d
/usr/include/dlang/dmd/core/internal/backtrace/libunwind.d
/usr/include/dlang/dmd/core/internal/backtrace/macho.d
/usr/include/dlang/dmd/core/internal/backtrace/unwind.d
/usr/include/dlang/dmd/core/internal/container
/usr/include/dlang/dmd/core/internal/container/array.d
/usr/include/dlang/dmd/core/internal/container/common.d
/usr/include/dlang/dmd/core/internal/container/hashtab.d
/usr/include/dlang/dmd/core/internal/container/treap.d
/usr/include/dlang/dmd/core/internal/convert.d
/usr/include/dlang/dmd/core/internal/dassert.d
/usr/include/dlang/dmd/core/internal/destruction.d
/usr/include/dlang/dmd/core/internal/elf
/usr/include/dlang/dmd/core/internal/elf/dl.d
/usr/include/dlang/dmd/core/internal/elf/io.d
/usr/include/dlang/dmd/core/internal/entrypoint.d
/usr/include/dlang/dmd/core/internal/execinfo.d
/usr/include/dlang/dmd/core/internal/gc
/usr/include/dlang/dmd/core/internal/gc/bits.d
/usr/include/dlang/dmd/core/internal/gc/impl
/usr/include/dlang/dmd/core/internal/gc/impl/conservative
/usr/include/dlang/dmd/core/internal/gc/impl/conservative/gc.d
/usr/include/dlang/dmd/core/internal/gc/impl/manual
/usr/include/dlang/dmd/core/internal/gc/impl/manual/gc.d
/usr/include/dlang/dmd/core/internal/gc/impl/proto
/usr/include/dlang/dmd/core/internal/gc/impl/proto/gc.d
/usr/include/dlang/dmd/core/internal/gc/os.d
/usr/include/dlang/dmd/core/internal/gc/pooltable.d
/usr/include/dlang/dmd/core/internal/gc/proxy.d
/usr/include/dlang/dmd/core/internal/hash.d
/usr/include/dlang/dmd/core/internal/lifetime.d
/usr/include/dlang/dmd/core/internal/moving.d
/usr/include/dlang/dmd/core/internal/newaa.d
/usr/include/dlang/dmd/core/internal/parseoptions.d
/usr/include/dlang/dmd/core/internal/postblit.d
/usr/include/dlang/dmd/core/internal/qsort.d
/usr/include/dlang/dmd/core/internal/spinlock.d
/usr/include/dlang/dmd/core/internal/string.d
/usr/include/dlang/dmd/core/internal/switch_.d
/usr/include/dlang/dmd/core/internal/traits.d
/usr/include/dlang/dmd/core/internal/utf.d
/usr/include/dlang/dmd/core/internal/util
/usr/include/dlang/dmd/core/internal/util/array.d
/usr/include/dlang/dmd/core/internal/util/math.d
/usr/include/dlang/dmd/core/internal/vararg
/usr/include/dlang/dmd/core/internal/vararg/aarch64.d
/usr/include/dlang/dmd/core/internal/vararg/sysv_x64.d
/usr/include/dlang/dmd/core/lifetime.d
/usr/include/dlang/dmd/core/math.d
/usr/include/dlang/dmd/core/memory.d
/usr/include/dlang/dmd/core/runtime.d
/usr/include/dlang/dmd/core/simd.d
/usr/include/dlang/dmd/core/stdc
/usr/include/dlang/dmd/core/stdc/assert_.d
/usr/include/dlang/dmd/core/stdc/complex.d
/usr/include/dlang/dmd/core/stdc/config.d
/usr/include/dlang/dmd/core/stdc/ctype.d
/usr/include/dlang/dmd/core/stdc/errno.d
/usr/include/dlang/dmd/core/stdc/fenv.d
/usr/include/dlang/dmd/core/stdc/float_.d
/usr/include/dlang/dmd/core/stdc/inttypes.d
/usr/include/dlang/dmd/core/stdc/limits.d
/usr/include/dlang/dmd/core/stdc/locale.d
/usr/include/dlang/dmd/core/stdc/math.d
/usr/include/dlang/dmd/core/stdc/signal.d
/usr/include/dlang/dmd/core/stdc/stdarg.d
/usr/include/dlang/dmd/core/stdc/stdatomic.d
/usr/include/dlang/dmd/core/stdc/stddef.d
/usr/include/dlang/dmd/core/stdc/stdint.d
/usr/include/dlang/dmd/core/stdc/stdio.d
/usr/include/dlang/dmd/core/stdc/stdlib.d
/usr/include/dlang/dmd/core/stdc/string.d
/usr/include/dlang/dmd/core/stdc/tgmath.d
/usr/include/dlang/dmd/core/stdc/time.d
/usr/include/dlang/dmd/core/stdc/wchar_.d
/usr/include/dlang/dmd/core/stdc/wctype.d
/usr/include/dlang/dmd/core/stdcpp
/usr/include/dlang/dmd/core/stdcpp/allocator.d
/usr/include/dlang/dmd/core/stdcpp/array.d
/usr/include/dlang/dmd/core/stdcpp/exception.d
/usr/include/dlang/dmd/core/stdcpp/memory.d
/usr/include/dlang/dmd/core/stdcpp/new_.d
/usr/include/dlang/dmd/core/stdcpp/string.d
/usr/include/dlang/dmd/core/stdcpp/string_view.d
/usr/include/dlang/dmd/core/stdcpp/type_traits.d
/usr/include/dlang/dmd/core/stdcpp/typeinfo.d
/usr/include/dlang/dmd/core/stdcpp/utility.d
/usr/include/dlang/dmd/core/stdcpp/vector.d
/usr/include/dlang/dmd/core/stdcpp/xutility.d
/usr/include/dlang/dmd/core/sync
/usr/include/dlang/dmd/core/sync/barrier.d
/usr/include/dlang/dmd/core/sync/condition.d
/usr/include/dlang/dmd/core/sync/config.d
/usr/include/dlang/dmd/core/sync/event.d
/usr/include/dlang/dmd/core/sync/exception.d
/usr/include/dlang/dmd/core/sync/mutex.d
/usr/include/dlang/dmd/core/sync/rwmutex.d
/usr/include/dlang/dmd/core/sync/semaphore.d
/usr/include/dlang/dmd/core/sys
/usr/include/dlang/dmd/core/sys/bionic
/usr/include/dlang/dmd/core/sys/bionic/err.d
/usr/include/dlang/dmd/core/sys/bionic/fcntl.d
/usr/include/dlang/dmd/core/sys/bionic/stdlib.d
/usr/include/dlang/dmd/core/sys/bionic/string.d
/usr/include/dlang/dmd/core/sys/bionic/unistd.d
/usr/include/dlang/dmd/core/sys/darwin
/usr/include/dlang/dmd/core/sys/darwin/crt_externs.d
/usr/include/dlang/dmd/core/sys/darwin/dlfcn.d
/usr/include/dlang/dmd/core/sys/darwin/err.d
/usr/include/dlang/dmd/core/sys/darwin/execinfo.d
/usr/include/dlang/dmd/core/sys/darwin/fcntl.d
/usr/include/dlang/dmd/core/sys/darwin/ifaddrs.d
/usr/include/dlang/dmd/core/sys/darwin/mach
/usr/include/dlang/dmd/core/sys/darwin/mach/dyld.d
/usr/include/dlang/dmd/core/sys/darwin/mach/getsect.d
/usr/include/dlang/dmd/core/sys/darwin/mach/kern_return.d
/usr/include/dlang/dmd/core/sys/darwin/mach/loader.d
/usr/include/dlang/dmd/core/sys/darwin/mach/nlist.d
/usr/include/dlang/dmd/core/sys/darwin/mach/port.d
/usr/include/dlang/dmd/core/sys/darwin/mach/semaphore.d
/usr/include/dlang/dmd/core/sys/darwin/mach/stab.d
/usr/include/dlang/dmd/core/sys/darwin/mach/thread_act.d
/usr/include/dlang/dmd/core/sys/darwin/netinet
/usr/include/dlang/dmd/core/sys/darwin/netinet/in_.d
/usr/include/dlang/dmd/core/sys/darwin/pthread.d
/usr/include/dlang/dmd/core/sys/darwin/stdlib.d
/usr/include/dlang/dmd/core/sys/darwin/string.d
/usr/include/dlang/dmd/core/sys/darwin/sys
/usr/include/dlang/dmd/core/sys/darwin/sys/cdefs.d
/usr/include/dlang/dmd/core/sys/darwin/sys/event.d
/usr/include/dlang/dmd/core/sys/darwin/sys/mman.d
/usr/include/dlang/dmd/core/sys/darwin/sys/sysctl.d
/usr/include/dlang/dmd/core/sys/dragonflybsd
/usr/include/dlang/dmd/core/sys/dragonflybsd/dlfcn.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/err.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/execinfo.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/netinet
/usr/include/dlang/dmd/core/sys/dragonflybsd/netinet/in_.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/pthread_np.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/stdlib.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/string.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/_bitset.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/_cpuset.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/cdefs.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/elf.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/elf32.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/elf64.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/elf_common.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/event.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/link_elf.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/mman.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/socket.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/sys/sysctl.d
/usr/include/dlang/dmd/core/sys/dragonflybsd/time.d
/usr/include/dlang/dmd/core/sys/elf
/usr/include/dlang/dmd/core/sys/elf/package.d
/usr/include/dlang/dmd/core/sys/freebsd
/usr/include/dlang/dmd/core/sys/freebsd/config.d
/usr/include/dlang/dmd/core/sys/freebsd/dlfcn.d
/usr/include/dlang/dmd/core/sys/freebsd/err.d
/usr/include/dlang/dmd/core/sys/freebsd/execinfo.d
/usr/include/dlang/dmd/core/sys/freebsd/ifaddrs.d
/usr/include/dlang/dmd/core/sys/freebsd/net
/usr/include/dlang/dmd/core/sys/freebsd/net/if_dl.d
/usr/include/dlang/dmd/core/sys/freebsd/netinet
/usr/include/dlang/dmd/core/sys/freebsd/netinet/in_.d
/usr/include/dlang/dmd/core/sys/freebsd/pthread_np.d
/usr/include/dlang/dmd/core/sys/freebsd/stdlib.d
/usr/include/dlang/dmd/core/sys/freebsd/string.d
/usr/include/dlang/dmd/core/sys/freebsd/sys
/usr/include/dlang/dmd/core/sys/freebsd/sys/_bitset.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/_cpuset.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/cdefs.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/elf.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/elf32.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/elf64.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/elf_common.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/event.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/link_elf.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/mman.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/mount.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/socket.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/sysctl.d
/usr/include/dlang/dmd/core/sys/freebsd/sys/types.d
/usr/include/dlang/dmd/core/sys/freebsd/time.d
/usr/include/dlang/dmd/core/sys/freebsd/unistd.d
/usr/include/dlang/dmd/core/sys/linux
/usr/include/dlang/dmd/core/sys/linux/config.d
/usr/include/dlang/dmd/core/sys/linux/dlfcn.d
/usr/include/dlang/dmd/core/sys/linux/elf.d
/usr/include/dlang/dmd/core/sys/linux/epoll.d
/usr/include/dlang/dmd/core/sys/linux/err.d
/usr/include/dlang/dmd/core/sys/linux/errno.d
/usr/include/dlang/dmd/core/sys/linux/execinfo.d
/usr/include/dlang/dmd/core/sys/linux/fcntl.d
/usr/include/dlang/dmd/core/sys/linux/fs.d
/usr/include/dlang/dmd/core/sys/linux/ifaddrs.d
/usr/include/dlang/dmd/core/sys/linux/io_uring.d
/usr/include/dlang/dmd/core/sys/linux/link.d
/usr/include/dlang/dmd/core/sys/linux/linux
/usr/include/dlang/dmd/core/sys/linux/linux/if_arp.d
/usr/include/dlang/dmd/core/sys/linux/linux/if_packet.d
/usr/include/dlang/dmd/core/sys/linux/netinet
/usr/include/dlang/dmd/core/sys/linux/netinet/in_.d
/usr/include/dlang/dmd/core/sys/linux/netinet/tcp.d
/usr/include/dlang/dmd/core/sys/linux/perf_event.d
/usr/include/dlang/dmd/core/sys/linux/sched.d
/usr/include/dlang/dmd/core/sys/linux/stdio.d
/usr/include/dlang/dmd/core/sys/linux/string.d
/usr/include/dlang/dmd/core/sys/linux/sys
/usr/include/dlang/dmd/core/sys/linux/sys/auxv.d
/usr/include/dlang/dmd/core/sys/linux/sys/eventfd.d
/usr/include/dlang/dmd/core/sys/linux/sys/file.d
/usr/include/dlang/dmd/core/sys/linux/sys/inotify.d
/usr/include/dlang/dmd/core/sys/linux/sys/mman.d
/usr/include/dlang/dmd/core/sys/linux/sys/prctl.d
/usr/include/dlang/dmd/core/sys/linux/sys/signalfd.d
/usr/include/dlang/dmd/core/sys/linux/sys/socket.d
/usr/include/dlang/dmd/core/sys/linux/sys/sysinfo.d
/usr/include/dlang/dmd/core/sys/linux/sys/time.d
/usr/include/dlang/dmd/core/sys/linux/sys/xattr.d
/usr/include/dlang/dmd/core/sys/linux/termios.d
/usr/include/dlang/dmd/core/sys/linux/time.d
/usr/include/dlang/dmd/core/sys/linux/timerfd.d
/usr/include/dlang/dmd/core/sys/linux/tipc.d
/usr/include/dlang/dmd/core/sys/linux/unistd.d
/usr/include/dlang/dmd/core/sys/netbsd
/usr/include/dlang/dmd/core/sys/netbsd/dlfcn.d
/usr/include/dlang/dmd/core/sys/netbsd/err.d
/usr/include/dlang/dmd/core/sys/netbsd/execinfo.d
/usr/include/dlang/dmd/core/sys/netbsd/stdlib.d
/usr/include/dlang/dmd/core/sys/netbsd/string.d
/usr/include/dlang/dmd/core/sys/netbsd/sys
/usr/include/dlang/dmd/core/sys/netbsd/sys/elf.d
/usr/include/dlang/dmd/core/sys/netbsd/sys/elf32.d
/usr/include/dlang/dmd/core/sys/netbsd/sys/elf64.d
/usr/include/dlang/dmd/core/sys/netbsd/sys/elf_common.d
/usr/include/dlang/dmd/core/sys/netbsd/sys/event.d
/usr/include/dlang/dmd/core/sys/netbsd/sys/featuretest.d
/usr/include/dlang/dmd/core/sys/netbsd/sys/link_elf.d
/usr/include/dlang/dmd/core/sys/netbsd/sys/mman.d
/usr/include/dlang/dmd/core/sys/netbsd/sys/sysctl.d
/usr/include/dlang/dmd/core/sys/netbsd/time.d
/usr/include/dlang/dmd/core/sys/openbsd
/usr/include/dlang/dmd/core/sys/openbsd/dlfcn.d
/usr/include/dlang/dmd/core/sys/openbsd/err.d
/usr/include/dlang/dmd/core/sys/openbsd/execinfo.d
/usr/include/dlang/dmd/core/sys/openbsd/pthread_np.d
/usr/include/dlang/dmd/core/sys/openbsd/pwd.d
/usr/include/dlang/dmd/core/sys/openbsd/stdlib.d
/usr/include/dlang/dmd/core/sys/openbsd/string.d
/usr/include/dlang/dmd/core/sys/openbsd/sys
/usr/include/dlang/dmd/core/sys/openbsd/sys/cdefs.d
/usr/include/dlang/dmd/core/sys/openbsd/sys/elf.d
/usr/include/dlang/dmd/core/sys/openbsd/sys/elf32.d
/usr/include/dlang/dmd/core/sys/openbsd/sys/elf64.d
/usr/include/dlang/dmd/core/sys/openbsd/sys/elf_common.d
/usr/include/dlang/dmd/core/sys/openbsd/sys/link_elf.d
/usr/include/dlang/dmd/core/sys/openbsd/sys/mman.d
/usr/include/dlang/dmd/core/sys/openbsd/sys/sysctl.d
/usr/include/dlang/dmd/core/sys/openbsd/time.d
/usr/include/dlang/dmd/core/sys/openbsd/unistd.d
/usr/include/dlang/dmd/core/sys/posix
/usr/include/dlang/dmd/core/sys/posix/aio.d
/usr/include/dlang/dmd/core/sys/posix/arpa
/usr/include/dlang/dmd/core/sys/posix/arpa/inet.d
/usr/include/dlang/dmd/core/sys/posix/config.d
/usr/include/dlang/dmd/core/sys/posix/dirent.d
/usr/include/dlang/dmd/core/sys/posix/dlfcn.d
/usr/include/dlang/dmd/core/sys/posix/fcntl.d
/usr/include/dlang/dmd/core/sys/posix/grp.d
/usr/include/dlang/dmd/core/sys/posix/iconv.d
/usr/include/dlang/dmd/core/sys/posix/inttypes.d
/usr/include/dlang/dmd/core/sys/posix/libgen.d
/usr/include/dlang/dmd/core/sys/posix/locale.d
/usr/include/dlang/dmd/core/sys/posix/mqueue.d
/usr/include/dlang/dmd/core/sys/posix/net
/usr/include/dlang/dmd/core/sys/posix/net/if_.d
/usr/include/dlang/dmd/core/sys/posix/netdb.d
/usr/include/dlang/dmd/core/sys/posix/netinet
/usr/include/dlang/dmd/core/sys/posix/netinet/in_.d
/usr/include/dlang/dmd/core/sys/posix/netinet/tcp.d
/usr/include/dlang/dmd/core/sys/posix/poll.d
/usr/include/dlang/dmd/core/sys/posix/pthread.d
/usr/include/dlang/dmd/core/sys/posix/pwd.d
/usr/include/dlang/dmd/core/sys/posix/sched.d
/usr/include/dlang/dmd/core/sys/posix/semaphore.d
/usr/include/dlang/dmd/core/sys/posix/setjmp.d
/usr/include/dlang/dmd/core/sys/posix/signal.d
/usr/include/dlang/dmd/core/sys/posix/spawn.d
/usr/include/dlang/dmd/core/sys/posix/stdc
/usr/include/dlang/dmd/core/sys/posix/stdc/time.d
/usr/include/dlang/dmd/core/sys/posix/stdio.d
/usr/include/dlang/dmd/core/sys/posix/stdlib.d
/usr/include/dlang/dmd/core/sys/posix/string.d
/usr/include/dlang/dmd/core/sys/posix/strings.d
/usr/include/dlang/dmd/core/sys/posix/sys
/usr/include/dlang/dmd/core/sys/posix/sys/filio.d
/usr/include/dlang/dmd/core/sys/posix/sys/ioccom.d
/usr/include/dlang/dmd/core/sys/posix/sys/ioctl.d
/usr/include/dlang/dmd/core/sys/posix/sys/ipc.d
/usr/include/dlang/dmd/core/sys/posix/sys/mman.d
/usr/include/dlang/dmd/core/sys/posix/sys/msg.d
/usr/include/dlang/dmd/core/sys/posix/sys/resource.d
/usr/include/dlang/dmd/core/sys/posix/sys/select.d
/usr/include/dlang/dmd/core/sys/posix/sys/shm.d
/usr/include/dlang/dmd/core/sys/posix/sys/socket.d
/usr/include/dlang/dmd/core/sys/posix/sys/stat.d
/usr/include/dlang/dmd/core/sys/posix/sys/statvfs.d
/usr/include/dlang/dmd/core/sys/posix/sys/time.d
/usr/include/dlang/dmd/core/sys/posix/sys/ttycom.d
/usr/include/dlang/dmd/core/sys/posix/sys/types.d
/usr/include/dlang/dmd/core/sys/posix/sys/uio.d
/usr/include/dlang/dmd/core/sys/posix/sys/un.d
/usr/include/dlang/dmd/core/sys/posix/sys/utsname.d
/usr/include/dlang/dmd/core/sys/posix/sys/wait.d
/usr/include/dlang/dmd/core/sys/posix/syslog.d
/usr/include/dlang/dmd/core/sys/posix/termios.d
/usr/include/dlang/dmd/core/sys/posix/time.d
/usr/include/dlang/dmd/core/sys/posix/ucontext.d
/usr/include/dlang/dmd/core/sys/posix/unistd.d
/usr/include/dlang/dmd/core/sys/posix/utime.d
/usr/include/dlang/dmd/core/sys/solaris
/usr/include/dlang/dmd/core/sys/solaris/dlfcn.d
/usr/include/dlang/dmd/core/sys/solaris/elf.d
/usr/include/dlang/dmd/core/sys/solaris/err.d
/usr/include/dlang/dmd/core/sys/solaris/execinfo.d
/usr/include/dlang/dmd/core/sys/solaris/libelf.d
/usr/include/dlang/dmd/core/sys/solaris/link.d
/usr/include/dlang/dmd/core/sys/solaris/stdlib.d
/usr/include/dlang/dmd/core/sys/solaris/sys
/usr/include/dlang/dmd/core/sys/solaris/sys/elf.d
/usr/include/dlang/dmd/core/sys/solaris/sys/elf_386.d
/usr/include/dlang/dmd/core/sys/solaris/sys/elf_SPARC.d
/usr/include/dlang/dmd/core/sys/solaris/sys/elf_amd64.d
/usr/include/dlang/dmd/core/sys/solaris/sys/elf_notes.d
/usr/include/dlang/dmd/core/sys/solaris/sys/elftypes.d
/usr/include/dlang/dmd/core/sys/solaris/sys/link.d
/usr/include/dlang/dmd/core/sys/solaris/sys/priocntl.d
/usr/include/dlang/dmd/core/sys/solaris/sys/procset.d
/usr/include/dlang/dmd/core/sys/solaris/sys/types.d
/usr/include/dlang/dmd/core/sys/solaris/time.d
/usr/include/dlang/dmd/core/sys/windows
/usr/include/dlang/dmd/core/sys/windows/accctrl.d
/usr/include/dlang/dmd/core/sys/windows/aclapi.d
/usr/include/dlang/dmd/core/sys/windows/aclui.d
/usr/include/dlang/dmd/core/sys/windows/basetsd.d
/usr/include/dlang/dmd/core/sys/windows/basetyps.d
/usr/include/dlang/dmd/core/sys/windows/cderr.d
/usr/include/dlang/dmd/core/sys/windows/cguid.d
/usr/include/dlang/dmd/core/sys/windows/com.d
/usr/include/dlang/dmd/core/sys/windows/comcat.d
/usr/include/dlang/dmd/core/sys/windows/commctrl.d
/usr/include/dlang/dmd/core/sys/windows/commdlg.d
/usr/include/dlang/dmd/core/sys/windows/core.d
/usr/include/dlang/dmd/core/sys/windows/cpl.d
/usr/include/dlang/dmd/core/sys/windows/cplext.d
/usr/include/dlang/dmd/core/sys/windows/custcntl.d
/usr/include/dlang/dmd/core/sys/windows/dbghelp.d
/usr/include/dlang/dmd/core/sys/windows/dbghelp_types.d
/usr/include/dlang/dmd/core/sys/windows/dbt.d
/usr/include/dlang/dmd/core/sys/windows/dde.d
/usr/include/dlang/dmd/core/sys/windows/ddeml.d
/usr/include/dlang/dmd/core/sys/windows/dhcpcsdk.d
/usr/include/dlang/dmd/core/sys/windows/dlgs.d
/usr/include/dlang/dmd/core/sys/windows/dll.d
/usr/include/dlang/dmd/core/sys/windows/docobj.d
/usr/include/dlang/dmd/core/sys/windows/errorrep.d
/usr/include/dlang/dmd/core/sys/windows/exdisp.d
/usr/include/dlang/dmd/core/sys/windows/exdispid.d
/usr/include/dlang/dmd/core/sys/windows/httpext.d
/usr/include/dlang/dmd/core/sys/windows/idispids.d
/usr/include/dlang/dmd/core/sys/windows/imagehlp.d
/usr/include/dlang/dmd/core/sys/windows/imm.d
/usr/include/dlang/dmd/core/sys/windows/intshcut.d
/usr/include/dlang/dmd/core/sys/windows/ipexport.d
/usr/include/dlang/dmd/core/sys/windows/iphlpapi.d
/usr/include/dlang/dmd/core/sys/windows/ipifcons.d
/usr/include/dlang/dmd/core/sys/windows/iprtrmib.d
/usr/include/dlang/dmd/core/sys/windows/iptypes.d
/usr/include/dlang/dmd/core/sys/windows/isguids.d
/usr/include/dlang/dmd/core/sys/windows/lm.d
/usr/include/dlang/dmd/core/sys/windows/lmaccess.d
/usr/include/dlang/dmd/core/sys/windows/lmalert.d
/usr/include/dlang/dmd/core/sys/windows/lmapibuf.d
/usr/include/dlang/dmd/core/sys/windows/lmat.d
/usr/include/dlang/dmd/core/sys/windows/lmaudit.d
/usr/include/dlang/dmd/core/sys/windows/lmbrowsr.d
/usr/include/dlang/dmd/core/sys/windows/lmchdev.d
/usr/include/dlang/dmd/core/sys/windows/lmconfig.d
/usr/include/dlang/dmd/core/sys/windows/lmcons.d
/usr/include/dlang/dmd/core/sys/windows/lmerr.d
/usr/include/dlang/dmd/core/sys/windows/lmerrlog.d
/usr/include/dlang/dmd/core/sys/windows/lmmsg.d
/usr/include/dlang/dmd/core/sys/windows/lmremutl.d
/usr/include/dlang/dmd/core/sys/windows/lmrepl.d
/usr/include/dlang/dmd/core/sys/windows/lmserver.d
/usr/include/dlang/dmd/core/sys/windows/lmshare.d
/usr/include/dlang/dmd/core/sys/windows/lmsname.d
/usr/include/dlang/dmd/core/sys/windows/lmstats.d
/usr/include/dlang/dmd/core/sys/windows/lmsvc.d
/usr/include/dlang/dmd/core/sys/windows/lmuse.d
/usr/include/dlang/dmd/core/sys/windows/lmuseflg.d
/usr/include/dlang/dmd/core/sys/windows/lmwksta.d
/usr/include/dlang/dmd/core/sys/windows/lzexpand.d
/usr/include/dlang/dmd/core/sys/windows/mapi.d
/usr/include/dlang/dmd/core/sys/windows/mciavi.d
/usr/include/dlang/dmd/core/sys/windows/mcx.d
/usr/include/dlang/dmd/core/sys/windows/mgmtapi.d
/usr/include/dlang/dmd/core/sys/windows/mmsystem.d
/usr/include/dlang/dmd/core/sys/windows/msacm.d
/usr/include/dlang/dmd/core/sys/windows/mshtml.d
/usr/include/dlang/dmd/core/sys/windows/mswsock.d
/usr/include/dlang/dmd/core/sys/windows/nb30.d
/usr/include/dlang/dmd/core/sys/windows/nddeapi.d
/usr/include/dlang/dmd/core/sys/windows/nspapi.d
/usr/include/dlang/dmd/core/sys/windows/ntdef.d
/usr/include/dlang/dmd/core/sys/windows/ntdll.d
/usr/include/dlang/dmd/core/sys/windows/ntldap.d
/usr/include/dlang/dmd/core/sys/windows/ntsecapi.d
/usr/include/dlang/dmd/core/sys/windows/ntsecpkg.d
/usr/include/dlang/dmd/core/sys/windows/oaidl.d
/usr/include/dlang/dmd/core/sys/windows/objbase.d
/usr/include/dlang/dmd/core/sys/windows/objfwd.d
/usr/include/dlang/dmd/core/sys/windows/objidl.d
/usr/include/dlang/dmd/core/sys/windows/objsafe.d
/usr/include/dlang/dmd/core/sys/windows/ocidl.d
/usr/include/dlang/dmd/core/sys/windows/odbcinst.d
/usr/include/dlang/dmd/core/sys/windows/ole.d
/usr/include/dlang/dmd/core/sys/windows/ole2.d
/usr/include/dlang/dmd/core/sys/windows/ole2ver.d
/usr/include/dlang/dmd/core/sys/windows/oleacc.d
/usr/include/dlang/dmd/core/sys/windows/oleauto.d
/usr/include/dlang/dmd/core/sys/windows/olectl.d
/usr/include/dlang/dmd/core/sys/windows/olectlid.d
/usr/include/dlang/dmd/core/sys/windows/oledlg.d
/usr/include/dlang/dmd/core/sys/windows/oleidl.d
/usr/include/dlang/dmd/core/sys/windows/pbt.d
/usr/include/dlang/dmd/core/sys/windows/powrprof.d
/usr/include/dlang/dmd/core/sys/windows/prsht.d
/usr/include/dlang/dmd/core/sys/windows/psapi.d
/usr/include/dlang/dmd/core/sys/windows/rapi.d
/usr/include/dlang/dmd/core/sys/windows/ras.d
/usr/include/dlang/dmd/core/sys/windows/rasdlg.d
/usr/include/dlang/dmd/core/sys/windows/raserror.d
/usr/include/dlang/dmd/core/sys/windows/rassapi.d
/usr/include/dlang/dmd/core/sys/windows/reason.d
/usr/include/dlang/dmd/core/sys/windows/regstr.d
/usr/include/dlang/dmd/core/sys/windows/richedit.d
/usr/include/dlang/dmd/core/sys/windows/richole.d
/usr/include/dlang/dmd/core/sys/windows/rpc.d
/usr/include/dlang/dmd/core/sys/windows/rpcdce.d
/usr/include/dlang/dmd/core/sys/windows/rpcdce2.d
/usr/include/dlang/dmd/core/sys/windows/rpcdcep.d
/usr/include/dlang/dmd/core/sys/windows/rpcndr.d
/usr/include/dlang/dmd/core/sys/windows/rpcnsi.d
/usr/include/dlang/dmd/core/sys/windows/rpcnsip.d
/usr/include/dlang/dmd/core/sys/windows/rpcnterr.d
/usr/include/dlang/dmd/core/sys/windows/schannel.d
/usr/include/dlang/dmd/core/sys/windows/sdkddkver.d
/usr/include/dlang/dmd/core/sys/windows/secext.d
/usr/include/dlang/dmd/core/sys/windows/security.d
/usr/include/dlang/dmd/core/sys/windows/servprov.d
/usr/include/dlang/dmd/core/sys/windows/setupapi.d
/usr/include/dlang/dmd/core/sys/windows/shellapi.d
/usr/include/dlang/dmd/core/sys/windows/shldisp.d
/usr/include/dlang/dmd/core/sys/windows/shlguid.d
/usr/include/dlang/dmd/core/sys/windows/shlobj.d
/usr/include/dlang/dmd/core/sys/windows/shlwapi.d
/usr/include/dlang/dmd/core/sys/windows/snmp.d
/usr/include/dlang/dmd/core/sys/windows/sql.d
/usr/include/dlang/dmd/core/sys/windows/sqlext.d
/usr/include/dlang/dmd/core/sys/windows/sqltypes.d
/usr/include/dlang/dmd/core/sys/windows/sqlucode.d
/usr/include/dlang/dmd/core/sys/windows/sspi.d
/usr/include/dlang/dmd/core/sys/windows/stacktrace.d
/usr/include/dlang/dmd/core/sys/windows/stat.d
/usr/include/dlang/dmd/core/sys/windows/stdc
/usr/include/dlang/dmd/core/sys/windows/stdc/malloc.d
/usr/include/dlang/dmd/core/sys/windows/stdc/time.d
/usr/include/dlang/dmd/core/sys/windows/subauth.d
/usr/include/dlang/dmd/core/sys/windows/threadaux.d
/usr/include/dlang/dmd/core/sys/windows/tlhelp32.d
/usr/include/dlang/dmd/core/sys/windows/tmschema.d
/usr/include/dlang/dmd/core/sys/windows/unknwn.d
/usr/include/dlang/dmd/core/sys/windows/uuid.d
/usr/include/dlang/dmd/core/sys/windows/vfw.d
/usr/include/dlang/dmd/core/sys/windows/w32api.d
/usr/include/dlang/dmd/core/sys/windows/winbase.d
/usr/include/dlang/dmd/core/sys/windows/winber.d
/usr/include/dlang/dmd/core/sys/windows/wincon.d
/usr/include/dlang/dmd/core/sys/windows/wincrypt.d
/usr/include/dlang/dmd/core/sys/windows/windef.d
/usr/include/dlang/dmd/core/sys/windows/windows.d
/usr/include/dlang/dmd/core/sys/windows/winerror.d
/usr/include/dlang/dmd/core/sys/windows/wingdi.d
/usr/include/dlang/dmd/core/sys/windows/winhttp.d
/usr/include/dlang/dmd/core/sys/windows/wininet.d
/usr/include/dlang/dmd/core/sys/windows/winioctl.d
/usr/include/dlang/dmd/core/sys/windows/winldap.d
/usr/include/dlang/dmd/core/sys/windows/winnetwk.d
/usr/include/dlang/dmd/core/sys/windows/winnls.d
/usr/include/dlang/dmd/core/sys/windows/winnt.d
/usr/include/dlang/dmd/core/sys/windows/winperf.d
/usr/include/dlang/dmd/core/sys/windows/winreg.d
/usr/include/dlang/dmd/core/sys/windows/winsock2.d
/usr/include/dlang/dmd/core/sys/windows/winspool.d
/usr/include/dlang/dmd/core/sys/windows/winsvc.d
/usr/include/dlang/dmd/core/sys/windows/winuser.d
/usr/include/dlang/dmd/core/sys/windows/winver.d
/usr/include/dlang/dmd/core/sys/windows/wtsapi32.d
/usr/include/dlang/dmd/core/sys/windows/wtypes.d
/usr/include/dlang/dmd/core/thread
/usr/include/dlang/dmd/core/thread/context.d
/usr/include/dlang/dmd/core/thread/fiber.d
/usr/include/dlang/dmd/core/thread/osthread.d
/usr/include/dlang/dmd/core/thread/package.d
/usr/include/dlang/dmd/core/thread/threadbase.d
/usr/include/dlang/dmd/core/thread/threadgroup.d
/usr/include/dlang/dmd/core/thread/types.d
/usr/include/dlang/dmd/core/time.d
/usr/include/dlang/dmd/core/vararg.d
/usr/include/dlang/dmd/core/volatile.d
/usr/include/dlang/dmd/etc
/usr/include/dlang/dmd/etc/c
/usr/include/dlang/dmd/etc/c/curl.d
/usr/include/dlang/dmd/etc/c/odbc
/usr/include/dlang/dmd/etc/c/odbc/sql.d
/usr/include/dlang/dmd/etc/c/odbc/sqlext.d
/usr/include/dlang/dmd/etc/c/odbc/sqltypes.d
/usr/include/dlang/dmd/etc/c/odbc/sqlucode.d
/usr/include/dlang/dmd/etc/c/sqlite3.d
/usr/include/dlang/dmd/etc/c/zlib
/usr/include/dlang/dmd/etc/c/zlib.d
/usr/include/dlang/dmd/etc/c/zlib/ChangeLog
/usr/include/dlang/dmd/etc/c/zlib/README
/usr/include/dlang/dmd/etc/c/zlib/adler32.c
/usr/include/dlang/dmd/etc/c/zlib/compress.c
/usr/include/dlang/dmd/etc/c/zlib/crc32.c
/usr/include/dlang/dmd/etc/c/zlib/crc32.h
/usr/include/dlang/dmd/etc/c/zlib/deflate.c
/usr/include/dlang/dmd/etc/c/zlib/deflate.h
/usr/include/dlang/dmd/etc/c/zlib/doc
/usr/include/dlang/dmd/etc/c/zlib/doc/algorithm.txt
/usr/include/dlang/dmd/etc/c/zlib/gzclose.c
/usr/include/dlang/dmd/etc/c/zlib/gzguts.h
/usr/include/dlang/dmd/etc/c/zlib/gzlib.c
/usr/include/dlang/dmd/etc/c/zlib/gzread.c
/usr/include/dlang/dmd/etc/c/zlib/gzwrite.c
/usr/include/dlang/dmd/etc/c/zlib/infback.c
/usr/include/dlang/dmd/etc/c/zlib/inffast.c
/usr/include/dlang/dmd/etc/c/zlib/inffast.h
/usr/include/dlang/dmd/etc/c/zlib/inffixed.h
/usr/include/dlang/dmd/etc/c/zlib/inflate.c
/usr/include/dlang/dmd/etc/c/zlib/inflate.h
/usr/include/dlang/dmd/etc/c/zlib/inftrees.c
/usr/include/dlang/dmd/etc/c/zlib/inftrees.h
/usr/include/dlang/dmd/etc/c/zlib/test
/usr/include/dlang/dmd/etc/c/zlib/test/example.c
/usr/include/dlang/dmd/etc/c/zlib/test/infcover.c
/usr/include/dlang/dmd/etc/c/zlib/test/minigzip.c
/usr/include/dlang/dmd/etc/c/zlib/trees.c
/usr/include/dlang/dmd/etc/c/zlib/trees.h
/usr/include/dlang/dmd/etc/c/zlib/uncompr.c
/usr/include/dlang/dmd/etc/c/zlib/zconf.h
/usr/include/dlang/dmd/etc/c/zlib/zlib.3
/usr/include/dlang/dmd/etc/c/zlib/zlib.h
/usr/include/dlang/dmd/etc/c/zlib/zutil.c
/usr/include/dlang/dmd/etc/c/zlib/zutil.h
/usr/include/dlang/dmd/etc/linux
/usr/include/dlang/dmd/etc/linux/memoryerror.d
/usr/include/dlang/dmd/etc/valgrind
/usr/include/dlang/dmd/etc/valgrind/valgrind.d
/usr/include/dlang/dmd/importc.h
/usr/include/dlang/dmd/object.d
/usr/include/dlang/dmd/std
/usr/include/dlang/dmd/std/algorithm
/usr/include/dlang/dmd/std/algorithm/comparison.d
/usr/include/dlang/dmd/std/algorithm/internal.d
/usr/include/dlang/dmd/std/algorithm/iteration.d
/usr/include/dlang/dmd/std/algorithm/mutation.d
/usr/include/dlang/dmd/std/algorithm/package.d
/usr/include/dlang/dmd/std/algorithm/searching.d
/usr/include/dlang/dmd/std/algorithm/setops.d
/usr/include/dlang/dmd/std/algorithm/sorting.d
/usr/include/dlang/dmd/std/array.d
/usr/include/dlang/dmd/std/ascii.d
/usr/include/dlang/dmd/std/base64.d
/usr/include/dlang/dmd/std/bigint.d
/usr/include/dlang/dmd/std/bitmanip.d
/usr/include/dlang/dmd/std/checkedint.d
/usr/include/dlang/dmd/std/compiler.d
/usr/include/dlang/dmd/std/complex.d
/usr/include/dlang/dmd/std/concurrency.d
/usr/include/dlang/dmd/std/container
/usr/include/dlang/dmd/std/container/array.d
/usr/include/dlang/dmd/std/container/binaryheap.d
/usr/include/dlang/dmd/std/container/dlist.d
/usr/include/dlang/dmd/std/container/package.d
/usr/include/dlang/dmd/std/container/rbtree.d
/usr/include/dlang/dmd/std/container/slist.d
/usr/include/dlang/dmd/std/container/util.d
/usr/include/dlang/dmd/std/conv.d
/usr/include/dlang/dmd/std/csv.d
/usr/include/dlang/dmd/std/datetime
/usr/include/dlang/dmd/std/datetime/date.d
/usr/include/dlang/dmd/std/datetime/interval.d
/usr/include/dlang/dmd/std/datetime/package.d
/usr/include/dlang/dmd/std/datetime/stopwatch.d
/usr/include/dlang/dmd/std/datetime/systime.d
/usr/include/dlang/dmd/std/datetime/timezone.d
/usr/include/dlang/dmd/std/demangle.d
/usr/include/dlang/dmd/std/digest
/usr/include/dlang/dmd/std/digest/crc.d
/usr/include/dlang/dmd/std/digest/hmac.d
/usr/include/dlang/dmd/std/digest/md.d
/usr/include/dlang/dmd/std/digest/murmurhash.d
/usr/include/dlang/dmd/std/digest/package.d
/usr/include/dlang/dmd/std/digest/ripemd.d
/usr/include/dlang/dmd/std/digest/sha.d
/usr/include/dlang/dmd/std/encoding.d
/usr/include/dlang/dmd/std/exception.d
/usr/include/dlang/dmd/std/experimental
/usr/include/dlang/dmd/std/experimental/allocator
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/affix_allocator.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/aligned_block_list.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/allocator_list.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/ascending_page_allocator.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/bitmapped_block.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/bucketizer.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/fallback_allocator.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/free_list.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/free_tree.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/kernighan_ritchie.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/null_allocator.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/package.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/quantizer.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/region.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/scoped_allocator.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/segregator.d
/usr/include/dlang/dmd/std/experimental/allocator/building_blocks/stats_collector.d
/usr/include/dlang/dmd/std/experimental/allocator/common.d
/usr/include/dlang/dmd/std/experimental/allocator/gc_allocator.d
/usr/include/dlang/dmd/std/experimental/allocator/mallocator.d
/usr/include/dlang/dmd/std/experimental/allocator/mmap_allocator.d
/usr/include/dlang/dmd/std/experimental/allocator/package.d
/usr/include/dlang/dmd/std/experimental/allocator/showcase.d
/usr/include/dlang/dmd/std/experimental/allocator/typed.d
/usr/include/dlang/dmd/std/experimental/checkedint.d
/usr/include/dlang/dmd/std/experimental/logger
/usr/include/dlang/dmd/std/experimental/logger/core.d
/usr/include/dlang/dmd/std/experimental/logger/filelogger.d
/usr/include/dlang/dmd/std/experimental/logger/multilogger.d
/usr/include/dlang/dmd/std/experimental/logger/nulllogger.d
/usr/include/dlang/dmd/std/experimental/logger/package.d
/usr/include/dlang/dmd/std/experimental/note.md
/usr/include/dlang/dmd/std/file.d
/usr/include/dlang/dmd/std/format
/usr/include/dlang/dmd/std/format/internal
/usr/include/dlang/dmd/std/format/internal/floats.d
/usr/include/dlang/dmd/std/format/internal/read.d
/usr/include/dlang/dmd/std/format/internal/write.d
/usr/include/dlang/dmd/std/format/package.d
/usr/include/dlang/dmd/std/format/read.d
/usr/include/dlang/dmd/std/format/spec.d
/usr/include/dlang/dmd/std/format/write.d
/usr/include/dlang/dmd/std/functional.d
/usr/include/dlang/dmd/std/getopt.d
/usr/include/dlang/dmd/std/int128.d
/usr/include/dlang/dmd/std/internal
/usr/include/dlang/dmd/std/internal/attributes.d
/usr/include/dlang/dmd/std/internal/cstring.d
/usr/include/dlang/dmd/std/internal/digest
/usr/include/dlang/dmd/std/internal/digest/sha_SSSE3.d
/usr/include/dlang/dmd/std/internal/math
/usr/include/dlang/dmd/std/internal/math/biguintcore.d
/usr/include/dlang/dmd/std/internal/math/biguintnoasm.d
/usr/include/dlang/dmd/std/internal/math/biguintx86.d
/usr/include/dlang/dmd/std/internal/math/errorfunction.d
/usr/include/dlang/dmd/std/internal/math/gammafunction.d
/usr/include/dlang/dmd/std/internal/memory.d
/usr/include/dlang/dmd/std/internal/scopebuffer.d
/usr/include/dlang/dmd/std/internal/test
/usr/include/dlang/dmd/std/internal/test/dummyrange.d
/usr/include/dlang/dmd/std/internal/test/range.d
/usr/include/dlang/dmd/std/internal/test/uda.d
/usr/include/dlang/dmd/std/internal/unicode_comp.d
/usr/include/dlang/dmd/std/internal/unicode_decomp.d
/usr/include/dlang/dmd/std/internal/unicode_grapheme.d
/usr/include/dlang/dmd/std/internal/unicode_norm.d
/usr/include/dlang/dmd/std/internal/unicode_tables.d
/usr/include/dlang/dmd/std/internal/windows
/usr/include/dlang/dmd/std/internal/windows/advapi32.d
/usr/include/dlang/dmd/std/json.d
/usr/include/dlang/dmd/std/logger
/usr/include/dlang/dmd/std/logger/core.d
/usr/include/dlang/dmd/std/logger/filelogger.d
/usr/include/dlang/dmd/std/logger/multilogger.d
/usr/include/dlang/dmd/std/logger/nulllogger.d
/usr/include/dlang/dmd/std/logger/package.d
/usr/include/dlang/dmd/std/math
/usr/include/dlang/dmd/std/math/algebraic.d
/usr/include/dlang/dmd/std/math/constants.d
/usr/include/dlang/dmd/std/math/exponential.d
/usr/include/dlang/dmd/std/math/hardware.d
/usr/include/dlang/dmd/std/math/operations.d
/usr/include/dlang/dmd/std/math/package.d
/usr/include/dlang/dmd/std/math/remainder.d
/usr/include/dlang/dmd/std/math/rounding.d
/usr/include/dlang/dmd/std/math/traits.d
/usr/include/dlang/dmd/std/math/trigonometry.d
/usr/include/dlang/dmd/std/mathspecial.d
/usr/include/dlang/dmd/std/meta.d
/usr/include/dlang/dmd/std/mmfile.d
/usr/include/dlang/dmd/std/net
/usr/include/dlang/dmd/std/net/curl.d
/usr/include/dlang/dmd/std/net/isemail.d
/usr/include/dlang/dmd/std/numeric.d
/usr/include/dlang/dmd/std/outbuffer.d
/usr/include/dlang/dmd/std/package.d
/usr/include/dlang/dmd/std/parallelism.d
/usr/include/dlang/dmd/std/path.d
/usr/include/dlang/dmd/std/process.d
/usr/include/dlang/dmd/std/random.d
/usr/include/dlang/dmd/std/range
/usr/include/dlang/dmd/std/range/interfaces.d
/usr/include/dlang/dmd/std/range/package.d
/usr/include/dlang/dmd/std/range/primitives.d
/usr/include/dlang/dmd/std/regex
/usr/include/dlang/dmd/std/regex/internal
/usr/include/dlang/dmd/std/regex/internal/backtracking.d
/usr/include/dlang/dmd/std/regex/internal/generator.d
/usr/include/dlang/dmd/std/regex/internal/ir.d
/usr/include/dlang/dmd/std/regex/internal/kickstart.d
/usr/include/dlang/dmd/std/regex/internal/parser.d
/usr/include/dlang/dmd/std/regex/internal/tests.d
/usr/include/dlang/dmd/std/regex/internal/tests2.d
/usr/include/dlang/dmd/std/regex/internal/thompson.d
/usr/include/dlang/dmd/std/regex/package.d
/usr/include/dlang/dmd/std/signals.d
/usr/include/dlang/dmd/std/socket.d
/usr/include/dlang/dmd/std/stdint.d
/usr/include/dlang/dmd/std/stdio.d
/usr/include/dlang/dmd/std/string.d
/usr/include/dlang/dmd/std/sumtype.d
/usr/include/dlang/dmd/std/system.d
/usr/include/dlang/dmd/std/traits.d
/usr/include/dlang/dmd/std/typecons.d
/usr/include/dlang/dmd/std/typetuple.d
/usr/include/dlang/dmd/std/uni
/usr/include/dlang/dmd/std/uni/package.d
/usr/include/dlang/dmd/std/uri.d
/usr/include/dlang/dmd/std/utf.d
/usr/include/dlang/dmd/std/uuid.d
/usr/include/dlang/dmd/std/variant.d
/usr/include/dlang/dmd/std/windows
/usr/include/dlang/dmd/std/windows/charset.d
/usr/include/dlang/dmd/std/windows/registry.d
/usr/include/dlang/dmd/std/windows/syserror.d
/usr/include/dlang/dmd/std/zip.d
/usr/include/dlang/dmd/std/zlib.d
/usr/include/dlang/dmd/unittest.d
/usr/lib64/libphobos2.so


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 30 23:52:28 2024