Path -package:diagrams-lib

Uniquely describes the location of a test within a test hierarchy. Node order is from test case to root.
Unlabeled path
A collection of FFI declarations for interfacing with Win32.
A collection of FFI declarations for interfacing with Win32.
A collection of FFI declarations for interfacing with Win32.
This module provides various helpful utilities for dealing with path and file names, directories, and related support. Written by John Goerzen, jgoerzen@complete.org
Path of some base and type. The type variables are:
  • b — base, the base location of the path; absolute or relative.
  • t — type, whether file or directory.
Internally it is a PosixPath, which can be of two formats only:
  1. File format: file.txt, foo/bar.txt, /foo/bar.txt
  2. Directory format: foo/, /foo/bar/
All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.
Path of some base and type. The type variables are:
  • b — base, the base location of the path; absolute or relative.
  • t — type, whether file or directory.
Internally it is a WindowsPath, which can be of two formats only:
  1. File format: file.txt, foo/bar.txt, /foo/bar.txt
  2. Directory format: foo/, /foo/bar/
All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.
Path of some base and type. The type variables are:
  • b — base, the base location of the path; absolute or relative.
  • t — type, whether file or directory.
Internally it is a PosixPath, which can be of two formats only:
  1. File format: file.txt, foo/bar.txt, /foo/bar.txt
  2. Directory format: foo/, /foo/bar/
All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.
Path of some base and type. The type variables are:
  • b — base, the base location of the path; absolute or relative.
  • t — type, whether file or directory.
Internally it is a WindowsPath, which can be of two formats only:
  1. File format: file.txt, foo/bar.txt, /foo/bar.txt
  2. Directory format: foo/, /foo/bar/
All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.
This library provides a well-typed representation of paths in a filesystem directory tree. Both Path.Posix and Path.Windows provide the same interface. This module will reexport the appropriate module for your platform.
Path of some base and type. The type variables are:
  • b — base, the base location of the path; absolute or relative.
  • t — type, whether file or directory.
Internally is a string. The string can be of two formats only:
  1. File format: file.txt, foo/bar.txt, /foo/bar.txt
  2. Directory format: foo/, /foo/bar/
All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.
Path of some base and type. The type variables are:
  • b — base, the base location of the path; absolute or relative.
  • t — type, whether file or directory.
Internally is a string. The string can be of two formats only:
  1. File format: file.txt, foo/bar.txt, /foo/bar.txt
  2. Directory format: foo/, /foo/bar/
All directories end in a trailing separator. There are no duplicate path separators //, no .., no ./, no ~/, etc.
A Path describes the location of a spec item within a spec tree. It consists of a list of group descriptions and a requirement description.
High‐level, byte‐based file and directory path manipulations. You probably want to import Filesystem.Path.CurrentOS instead, since it handles detecting which rules to use in the current compilation.
A Cairo path.
  • A path is a sequence of drawing operations that are accumulated until stroke is called. Using a path is particularly useful when drawing lines with special join styles and closePath.
A path through the x-y plane.
The path type used by Charts. A path can consist of several subpaths. Each is started by a MoveTo operation. All subpaths are open, except the last one, which may be closed using the Close operation. When filling a path all subpaths are closed implicitly. Closing a subpath means that a line is drawn from the end point to the start point of the subpath. If a Arc (or ArcNeg) is drawn a implicit line from the last end point of the subpath is drawn to the beginning of the arc. Another implicit line is drawn from the end of an arc to the beginning of the next path segment. The beginning of a subpath is either (0,0) or set by a MoveTo instruction. If the first subpath is started with an arc the beginning of that subpath is the beginning of the arc.