Nix 2.26.3
Nix, the purely functional package manager; unstable internal interfaces
 
Loading...
Searching...
No Matches
path.hh
Go to the documentation of this file.
1#pragma once
3
4#include <rapidcheck/gen/Arbitrary.h>
5
6#include <path.hh>
7
8namespace nix {
9
11 std::string name;
12};
13
14// For rapidcheck
15void showValue(const StorePath & p, std::ostream & os);
16
17}
18
19namespace rc {
20using namespace nix;
21
22template<>
23struct Arbitrary<StorePathName> {
24 static Gen<StorePathName> arbitrary();
25};
26
27template<>
28struct Arbitrary<StorePath> {
29 static Gen<StorePath> arbitrary();
30};
31
32}
Definition path.hh:27
std::shared_ptr< T > p
Definition lexer.l:1269
Definition path.hh:10