Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Meta function extension methods #52

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/extensions.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
library turf_extensions;

export 'src/meta_extensions.dart';
4 changes: 1 addition & 3 deletions lib/src/meta.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ typedef GeomEachCallback = dynamic Function(

/// A simple class to manage short circuiting from *Each functions while still
/// allowing an Exception to be thrown and raised
class _ShortCircuit {
_ShortCircuit();
}
class _ShortCircuit {}

/// Iterate over each geometry in [geoJSON], calling [callback] on each
/// iteration. Similar to Array.forEach()
Expand Down
17 changes: 17 additions & 0 deletions lib/src/meta_extensions.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import 'package:turf/src/meta.dart' as meta;

import '../helpers.dart';

extension GeoJSONObjectMetaExtension on GeoJSONObject {
void geomEach(meta.GeomEachCallback callback) {
meta.geomEach(this, callback);
}

void propEach(meta.PropEachCallback callback) {
meta.propEach(this, callback);
}

void featureEach(meta.FeatureEachCallback callback) {
meta.featureEach(this, callback);
}
}