fhir_path_plus 1.0.0
fhir_path_plus: ^1.0.0 copied to clipboard
FHIRPath navigation and extraction language implemented in pure Dart to be used with base FHIR packages.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add fhir_path_plusWith Flutter:
$ flutter pub add fhir_path_plusThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
fhir_path_plus: ^1.0.0Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:fhir_path_plus/fhir_path.dart';
import 'package:fhir_path_plus/lexer/arg_fxn_lexer.dart';
import 'package:fhir_path_plus/lexer/deprecated_lexer.dart';
import 'package:fhir_path_plus/lexer/extension_lexer.dart';
import 'package:fhir_path_plus/lexer/fhir_path_lexer.dart';
import 'package:fhir_path_plus/lexer/lexer_lists.dart';
import 'package:fhir_path_plus/lexer/lexers.dart';
import 'package:fhir_path_plus/lexer/literal_lexer.dart';
import 'package:fhir_path_plus/lexer/no_arg_fxn_lexer.dart';
import 'package:fhir_path_plus/lexer/operator_lexer.dart';
import 'package:fhir_path_plus/lexer/precedence.dart';
import 'package:fhir_path_plus/lexer/special_lexer.dart';
import 'package:fhir_path_plus/parser/fhir_path_parsers/fhir_path_parser.dart';
import 'package:fhir_path_plus/parser/fhir_path_parsers/value_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/combining_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/conversions_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/deprecated_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/existence_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/extension_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/filtering_projection_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/function_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/math_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/string_manipulation_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/subsetting_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/tree_navigation_parser.dart';
import 'package:fhir_path_plus/parser/function_parser/utility_parser.dart';
import 'package:fhir_path_plus/parser/literal_parser.dart';
import 'package:fhir_path_plus/parser/operation_parser/boolean_logic_parser.dart';
import 'package:fhir_path_plus/parser/operation_parser/collections_parser.dart';
import 'package:fhir_path_plus/parser/operation_parser/comparison_parser.dart';
import 'package:fhir_path_plus/parser/operation_parser/equality_parser.dart';
import 'package:fhir_path_plus/parser/operation_parser/math_parser.dart';
import 'package:fhir_path_plus/parser/operation_parser/operation_parser.dart';
import 'package:fhir_path_plus/parser/operation_parser/types_parser.dart';
import 'package:fhir_path_plus/parser/parser.dart';
import 'package:fhir_path_plus/parser/special_parser.dart';
import 'package:fhir_path_plus/utils/deep_comparison_lists.dart';
import 'package:fhir_path_plus/utils/exceptions.dart';
import 'package:fhir_path_plus/utils/fhir_datatypes.dart';
import 'package:fhir_path_plus/utils/polymorphic_prefixes.dart';
import 'package:fhir_path_plus/utils/singleton_evaluation.dart';
import 'package:fhir_path_plus/utils/utils.dart';
import 'package:fhir_path_plus/utils/versions.dart';
import 'package:fhir_path_plus/walk_fhir_path.dart';