Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

C#: Cleanup and sync StringExtensions with core #67031

Merged
merged 4 commits into from
Nov 28, 2022
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -414,21 +414,6 @@ public static partial godot_bool godotsharp_dictionary_remove_key(ref godot_dict

// StringExtensions

public static partial void godotsharp_string_md5_buffer(in godot_string p_self,
out godot_packed_byte_array r_md5_buffer);

public static partial void godotsharp_string_md5_text(in godot_string p_self, out godot_string r_md5_text);

public static partial int godotsharp_string_rfind(in godot_string p_self, in godot_string p_what, int p_from);

public static partial int godotsharp_string_rfindn(in godot_string p_self, in godot_string p_what, int p_from);

public static partial void godotsharp_string_sha256_buffer(in godot_string p_self,
out godot_packed_byte_array r_sha256_buffer);

public static partial void godotsharp_string_sha256_text(in godot_string p_self,
out godot_string r_sha256_text);

public static partial void godotsharp_string_simplify_path(in godot_string p_self,
out godot_string r_simplified_path);

Expand Down
Loading