forked from easz/cpp-semver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.cpp
42 lines (31 loc) · 929 Bytes
/
demo.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <iostream>
#include "cpp-semver.hpp"
int main()
{
{
const std::string ver1 = "1.0.0 || 1.5 - 3.0";
const std::string ver2 = ">1.1 <2.0";
const bool intersected = semver::intersects(ver1, ver2);
std::cout << "\"" << ver1
<< "\" and \"" << ver2
<< "\" are " << (intersected ? "" : "not ")
<< "intersected." << std::endl;
}
{
const std::string comp = "<1.0 >2.2";
const bool intersected = semver::intersects(comp);
std::cout << "\"" << comp
<< "\" is " << (intersected ? "" : "not ")
<< "intersected." << std::endl;
}
{
const std::string ver = "1.2.3";
const std::string range = "1.x || >=2.5.0 || 5.0.0 - 7.2.3";
const bool satisfied = semver::satisfies(ver, range);
std::cout << "\"" << ver
<< "\" is " << (satisfied ? "" : "not ")
<< "satisfied by "
<< "\"" << range << "\"." << std::endl;
}
return 0;
}